Endpoint Playground
Test Crawlora's CBS News author 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/cbsnews/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical cbsnews.com/team/<slug> author URL |
{
"code": 200,
"data": {
"url": "https://www.cbsnews.com/team/example-author/",
"name": "Example Author",
"biography": [
"Example Author covers example topics for CBS News."
],
"topics": [
"Politics",
"National Security"
],
"image_url": "https://assets1.cbsnewsstatic.com/hub/i/example/headshot.jpg",
"social_links": [
{
"platform": "twitter",
"url": "https://twitter.com/exampleauthor"
}
],
"articles": [
{
"title": "Example headline",
"url": "https://www.cbsnews.com/news/example-article-slug/",
"image_url": "https://assets1.cbsnewsstatic.com/hub/i/example/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 CBS News author's public team-page profile: name, biography, coverage topics, headshot (when the page has one), social links, and their recent articles.
{
"code": 200,
"data": {
"url": "https://www.cbsnews.com/team/example-author/",
"name": "Example Author",
"biography": [
"Example Author covers example topics for CBS News."
],
"topics": [
"Politics",
"National Security"
],
"image_url": "https://assets1.cbsnewsstatic.com/hub/i/example/headshot.jpg",
"social_links": [
{
"platform": "twitter",
"url": "https://twitter.com/exampleauthor"
}
],
"articles": [
{
"title": "Example headline",
"url": "https://www.cbsnews.com/news/example-article-slug/",
"image_url": "https://assets1.cbsnewsstatic.com/hub/i/example/thumb.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/cbsnews/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"