Endpoint Playground
Test Crawlora's TMDB Popular People 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/list" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page | integer | No | 1-based page, default 1 | |
| limit | integer | No | Max people, default 10, max 20 |
{
"code": 200,
"msg": "OK",
"data": {
"page": 2,
"has_next_page": true,
"people": [
{
"id": "525",
"name": "Christopher Nolan",
"known_for": "Interstellar, Inception, and The Dark Knight",
"profile_url": "https://media.themoviedb.org/t/p/w235_and_h235_face/7DFBDkrlEsXn9MxUQblLTdkHAYH.jpg",
"uri": "https://www.themoviedb.org/person/525-christopher-nolan"
}
],
"source_url": "https://www.themoviedb.org/person?page=2"
}
}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 one page from TMDB's Popular People directory, including each person's id, name, known-for titles, profile image, and detail URL. Credential-free public TMDB data.
{
"code": 200,
"msg": "OK",
"data": {
"page": 2,
"has_next_page": true,
"people": [
{
"id": "525",
"name": "Christopher Nolan",
"known_for": "Interstellar, Inception, and The Dark Knight",
"profile_url": "https://media.themoviedb.org/t/p/w235_and_h235_face/7DFBDkrlEsXn9MxUQblLTdkHAYH.jpg",
"uri": "https://www.themoviedb.org/person/525-christopher-nolan"
}
],
"source_url": "https://www.themoviedb.org/person?page=2"
}
}curl "https://api.crawlora.net/api/v1/tmdb/person/list" \
-H "x-api-key: $CRAWLORA_API_KEY"