Endpoint Playground
Test Crawlora's IMDb name awards API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/imdb/name/awards?id=nm0634240&url=https%3A%2F%2Fwww.imdb.com%2Fname%2Fnm0634240%2F" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | nm0634240 | IMDb name id |
| url | string | No | https://www.imdb.com/name/nm0634240/ | Absolute https://www.imdb.com/name/<id>/ URL |
{
"code": 200,
"msg": "OK",
"data": {
"id": "nm0634240",
"awards": [
{
"event": "Academy Awards, USA",
"year": "2024",
"category": "Best Achievement in Directing",
"result": "win",
"award": "Oscar",
"titles": [
{
"id": "tt15398776",
"title": "Oppenheimer"
}
],
"public_signals": 6
}
],
"public_page_derived": true
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns normalized public IMDb award rows for a person. Pass exactly one of `id` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "nm0634240",
"awards": [
{
"event": "Academy Awards, USA",
"year": "2024",
"category": "Best Achievement in Directing",
"result": "win",
"award": "Oscar",
"titles": [
{
"id": "tt15398776",
"title": "Oppenheimer"
}
],
"public_signals": 6
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/imdb/name/awards" \
-H "x-api-key: $CRAWLORA_API_KEY"