Endpoint Playground
Test Crawlora's Fox 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/foxnews/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Fox News author name slug, e.g. brooke-taylor | |
| url | string | No | Canonical https://www.foxnews.com/person/<letter>/<slug> author page URL, as an alternative to slug |
{
"code": 200,
"data": {
"name": "Brooke Taylor",
"slug": "brooke-taylor",
"url": "https://www.foxnews.com/person/t/brooke-taylor",
"bio": "Brooke Taylor is a Dallas-based correspondent for FOX News Channel (FNC). She joined the network in 2024.",
"articles": [
{
"title": "Austin ICE shooting sparks fight over Venezuelan illegal immigrant's deportation",
"url": "https://www.foxnews.com/us/austin-ice-shooting-sparks-fight-over-venezuelan-illegal-immigrants-deportation",
"summary": "LULAC and Rep. Lloyd Doggett are demanding an independent investigation.",
"published_at": "2026-09-21T17:03:55-04:00"
}
]
}
}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 Fox News author/personality's public bio page: name, biography, and their most recent articles. Provide either the author's name slug or the full https://www.foxnews.com/person/<letter>/<slug> page URL.
{
"code": 200,
"data": {
"name": "Brooke Taylor",
"slug": "brooke-taylor",
"url": "https://www.foxnews.com/person/t/brooke-taylor",
"bio": "Brooke Taylor is a Dallas-based correspondent for FOX News Channel (FNC). She joined the network in 2024.",
"articles": [
{
"title": "Austin ICE shooting sparks fight over Venezuelan illegal immigrant's deportation",
"url": "https://www.foxnews.com/us/austin-ice-shooting-sparks-fight-over-venezuelan-illegal-immigrants-deportation",
"summary": "LULAC and Rep. Lloyd Doggett are demanding an independent investigation.",
"published_at": "2026-09-21T17:03:55-04:00"
}
]
}
}curl "https://api.crawlora.net/api/v1/foxnews/author" \
-H "x-api-key: $CRAWLORA_API_KEY"