Endpoint Playground
Test Crawlora's TMDB Person 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/tmdb/person/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | TMDB person id | |
| limit | integer | No | Max filmography credits, default 10, max 20 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "31",
"name": "Tom Hanks",
"biography": "Thomas Jeffrey Hanks (born July 9, 1956) is an American actor and filmmaker...",
"birth_date": "1956-07-09",
"photo_url": "https://image.tmdb.org/t/p/w500/oFvZoKI6lvU03n4YoNGAll9rkas.jpg",
"filmography": [
{
"type": "movie",
"id": "13",
"title": "Forrest Gump",
"uri": "https://www.themoviedb.org/movie/13-forrest-gump"
},
{
"type": "movie",
"id": "862",
"title": "Toy Story",
"uri": "https://www.themoviedb.org/movie/862-toy-story"
}
],
"uri": "https://www.themoviedb.org/person/31-tom-hanks",
"source_url": "https://www.themoviedb.org/person/31"
}
}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 a normalized TMDB person: biography, birth date, photo, and filmography (movie and TV credits). Credential-free public TMDB data.
{
"code": 200,
"msg": "OK",
"data": {
"id": "31",
"name": "Tom Hanks",
"biography": "Thomas Jeffrey Hanks (born July 9, 1956) is an American actor and filmmaker...",
"birth_date": "1956-07-09",
"photo_url": "https://image.tmdb.org/t/p/w500/oFvZoKI6lvU03n4YoNGAll9rkas.jpg",
"filmography": [
{
"type": "movie",
"id": "13",
"title": "Forrest Gump",
"uri": "https://www.themoviedb.org/movie/13-forrest-gump"
},
{
"type": "movie",
"id": "862",
"title": "Toy Story",
"uri": "https://www.themoviedb.org/movie/862-toy-story"
}
],
"uri": "https://www.themoviedb.org/person/31-tom-hanks",
"source_url": "https://www.themoviedb.org/person/31"
}
}curl "https://api.crawlora.net/api/v1/tmdb/person/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"