Endpoint Playground
Test Crawlora's NBC News 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/nbc/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical NBC News author URL |
{
"code": 200,
"data": {
"url": "https://www.nbcnews.com/author/daniella-silva-ncpn211",
"name": "Daniella Silva",
"job_title": "National Reporter",
"bio": "I am an award-winning journalist covering national and international issues for NBC News, with a focus on immigration.",
"image_url": "https://media-cldnry.s-nbcnews.com/image/upload/.../190619-daniella-silva-byline2558.jpg",
"social_links": [
{
"platform": "twitter",
"url": "https://x.com/DaniellaLSilva"
},
{
"platform": "email",
"url": "mailto:daniella.silva@nbcuni.com"
}
],
"articles": [
{
"title": "Venezuelan man shot by ICE in Texas says he's in pain and still has bullet in his back",
"url": "https://www.nbcnews.com/news/us-news/venezuelan-man-shot-ice-texas-says-s-pain-still-bullet-back-rcna598999",
"section": "Immigration",
"published_at": "4h ago",
"image_url": "https://media-cldnry.s-nbcnews.com/image/upload/.../260920-austin-ice-shooting-ww-1440-460939.jpg"
}
]
},
"msg": "OK"
}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 an NBC News author's byline metadata (job title, bio, social links) and their recent articles from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://www.nbcnews.com/author/daniella-silva-ncpn211",
"name": "Daniella Silva",
"job_title": "National Reporter",
"bio": "I am an award-winning journalist covering national and international issues for NBC News, with a focus on immigration.",
"image_url": "https://media-cldnry.s-nbcnews.com/image/upload/.../190619-daniella-silva-byline2558.jpg",
"social_links": [
{
"platform": "twitter",
"url": "https://x.com/DaniellaLSilva"
},
{
"platform": "email",
"url": "mailto:daniella.silva@nbcuni.com"
}
],
"articles": [
{
"title": "Venezuelan man shot by ICE in Texas says he's in pain and still has bullet in his back",
"url": "https://www.nbcnews.com/news/us-news/venezuelan-man-shot-ice-texas-says-s-pain-still-bullet-back-rcna598999",
"section": "Immigration",
"published_at": "4h ago",
"image_url": "https://media-cldnry.s-nbcnews.com/image/upload/.../260920-austin-ice-shooting-ww-1440-460939.jpg"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/nbc/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"