Endpoint Playground
Test Crawlora's CNBC author profile 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/cnbc/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | CNBC author slug, e.g. jeff-cox | |
| url | string | No | Canonical https://www.cnbc.com/<slug>/ author page URL, as an alternative to slug |
{
"code": 200,
"data": {
"name": "Jeff Cox",
"slug": "jeff-cox",
"url": "https://www.cnbc.com/jeff-cox/",
"job_title": "Finance Editor",
"bio": "Jeff Cox is a finance editor with CNBC.com...",
"social_accounts": [
{
"platform": "twitter",
"url": "https://twitter.com/JeffCoxCNBCcom"
}
],
"articles": [
{
"title": "Fed officials still see two more rate cuts this year",
"url": "https://www.cnbc.com/2026/09/18/fed-rate-cuts.html",
"published_at": "September 18, 2026"
}
]
}
}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 CNBC author's public bio page: name, job title, biography, social links, and their most recent articles. Provide either the author's slug (the last path segment of their cnbc.com bio page) or the full bio page URL.
{
"code": 200,
"data": {
"name": "Jeff Cox",
"slug": "jeff-cox",
"url": "https://www.cnbc.com/jeff-cox/",
"job_title": "Finance Editor",
"bio": "Jeff Cox is a finance editor with CNBC.com...",
"social_accounts": [
{
"platform": "twitter",
"url": "https://twitter.com/JeffCoxCNBCcom"
}
],
"articles": [
{
"title": "Fed officials still see two more rate cuts this year",
"url": "https://www.cnbc.com/2026/09/18/fed-rate-cuts.html",
"published_at": "September 18, 2026"
}
]
}
}curl "https://api.crawlora.net/api/v1/cnbc/author" \
-H "x-api-key: $CRAWLORA_API_KEY"