Endpoint Playground
Test Crawlora's Variety 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/variety/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Author slug, e.g. ellise-shafer | |
| url | string | No | Canonical variety.com/author/<slug> URL, optionally with a /page/<n>/ segment; alternative to slug | |
| page | integer | No | 1-based page number; overrides any page number in url |
{
"code": 200,
"data": {
"name": "Ellise Shafer",
"slug": "ellise-shafer",
"url": "https://variety.com/author/ellise-shafer/",
"biography": [
"Ellise Shafer is Variety's Deputy Editor of International."
],
"image_url": "https://variety.com/wp-content/uploads/2025/03/Ellise-shoulder.jpg",
"social_links": [
{
"platform": "twitter",
"url": "https://twitter.com/EllieShafer"
}
],
"page": 1,
"has_next_page": true,
"articles": [
{
"title": "Example headline",
"url": "https://variety.com/2026/music/global/example-article-1234567/"
}
]
}
}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 Variety author's public profile: name, biography, social links, and one page of their recent articles.
{
"code": 200,
"data": {
"name": "Ellise Shafer",
"slug": "ellise-shafer",
"url": "https://variety.com/author/ellise-shafer/",
"biography": [
"Ellise Shafer is Variety's Deputy Editor of International."
],
"image_url": "https://variety.com/wp-content/uploads/2025/03/Ellise-shoulder.jpg",
"social_links": [
{
"platform": "twitter",
"url": "https://twitter.com/EllieShafer"
}
],
"page": 1,
"has_next_page": true,
"articles": [
{
"title": "Example headline",
"url": "https://variety.com/2026/music/global/example-article-1234567/"
}
]
}
}curl "https://api.crawlora.net/api/v1/variety/author" \
-H "x-api-key: $CRAWLORA_API_KEY"