Endpoint Playground
Test Crawlora's CNN profile page 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/cnn/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | CNN profile slug, e.g. jake-tapper-profile (the -profile suffix is added automatically if omitted) | |
| url | string | No | Canonical cnn.com/profiles/<slug> URL, as an alternative to slug |
{
"code": 200,
"data": {
"url": "https://www.cnn.com/profiles/jake-tapper-profile",
"name": "Jake Tapper",
"title": "Anchor and Chief Washington Correspondent",
"bio": [
"CNN anchor and chief Washington correspondent Jake Tapper joined the network in January 2013..."
],
"social_accounts": [
{
"platform": "facebook",
"url": "https://www.facebook.com/JakeTapper"
},
{
"platform": "twitter",
"url": "https://www.twitter.com/JakeTapper"
}
],
"articles": [
{
"title": "JFK's niece on Trump's Kennedy Center fight: 'These are the actions of a petty tyrant who can't get his way'",
"url": "https://www.cnn.com/2026/09/18/us/video/jfk-niece-calls-trump-petty-tyrant-in-kennedy-center-fight-lead-jake-tapper",
"type": "video",
"published_at": "Sep 18, 2026",
"image_url": "https://media.cnn.com/api/v1/images/stellar/prod/thumb-22998115-186338-815-thumb.jpg"
}
]
}
}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 CNN profile's byline metadata (name and title), bio paragraphs, social accounts, and recent articles/videos. Provide either a profile slug or a canonical cnn.com/profiles/<slug> URL.
{
"code": 200,
"data": {
"url": "https://www.cnn.com/profiles/jake-tapper-profile",
"name": "Jake Tapper",
"title": "Anchor and Chief Washington Correspondent",
"bio": [
"CNN anchor and chief Washington correspondent Jake Tapper joined the network in January 2013..."
],
"social_accounts": [
{
"platform": "facebook",
"url": "https://www.facebook.com/JakeTapper"
},
{
"platform": "twitter",
"url": "https://www.twitter.com/JakeTapper"
}
],
"articles": [
{
"title": "JFK's niece on Trump's Kennedy Center fight: 'These are the actions of a petty tyrant who can't get his way'",
"url": "https://www.cnn.com/2026/09/18/us/video/jfk-niece-calls-trump-petty-tyrant-in-kennedy-center-fight-lead-jake-tapper",
"type": "video",
"published_at": "Sep 18, 2026",
"image_url": "https://media.cnn.com/api/v1/images/stellar/prod/thumb-22998115-186338-815-thumb.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/cnn/author" \
-H "x-api-key: $CRAWLORA_API_KEY"