Endpoint Playground
Test Crawlora's Rolling Stone 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/rollingstone/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical Rolling Stone author URL |
{
"code": 200,
"data": {
"url": "https://rollingstone.com/author/cheyenne-roundtree/",
"name": "Cheyenne Roundtree",
"job_title": "Senior Investigations Reporter",
"bio": "Cheyenne Roundtree is a Senior Investigations Reporter at Rolling Stone, where she's broken numerous stories exposing the abuse of power within the entertainment industry.",
"image_url": "https://www.rollingstone.com/wp-content/uploads/2022/04/cheyenne.jpg?w=300",
"articles": [
{
"title": "Inside the Exclusive Music Gigs at Private Members Clubs",
"url": "https://rollingstone.com/music/music-features/music-shows-concerts-private-clubs-1235625181",
"published_at": "2026-09-22T15:00:00Z"
}
]
}
}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 a Rolling Stone author's byline metadata, biography, and recent articles (sourced from the author's own public RSS feed) from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://rollingstone.com/author/cheyenne-roundtree/",
"name": "Cheyenne Roundtree",
"job_title": "Senior Investigations Reporter",
"bio": "Cheyenne Roundtree is a Senior Investigations Reporter at Rolling Stone, where she's broken numerous stories exposing the abuse of power within the entertainment industry.",
"image_url": "https://www.rollingstone.com/wp-content/uploads/2022/04/cheyenne.jpg?w=300",
"articles": [
{
"title": "Inside the Exclusive Music Gigs at Private Members Clubs",
"url": "https://rollingstone.com/music/music-features/music-shows-concerts-private-clubs-1235625181",
"published_at": "2026-09-22T15:00:00Z"
}
]
}
}curl "https://api.crawlora.net/api/v1/rollingstone/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"