Endpoint Playground
Test Crawlora's TechCrunch 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/techcrunch/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical techcrunch.com/author/<slug> URL | |
| page | integer | No | 1-based page of recent articles to return; defaults to 1 |
{
"code": 200,
"data": {
"url": "https://techcrunch.com/author/amanda-silberling",
"name": "Amanda Silberling",
"job_title": "Senior Writer, TechCrunch",
"headshot_url": "https://techcrunch.com/wp-content/uploads/2024/05/example.jpg",
"biography": [
"Amanda Silberling is a senior writer at TechCrunch covering the intersection of technology and culture."
],
"social_links": {
"twitter": "https://twitter.com/asilbwrites",
"bluesky": "https://bsky.app/profile/amanda.omg.lol",
"linkedin": "https://www.linkedin.com/in/amanda-silberling-29853093/"
},
"page": 1,
"articles": [
{
"title": "Example story",
"url": "https://techcrunch.com/2026/09/22/example-story/",
"category": "Social"
}
]
}
}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 TechCrunch staff writer or contributor's public profile: name, job title, headshot, biography, social links, and one page of their recent articles.
{
"code": 200,
"data": {
"url": "https://techcrunch.com/author/amanda-silberling",
"name": "Amanda Silberling",
"job_title": "Senior Writer, TechCrunch",
"headshot_url": "https://techcrunch.com/wp-content/uploads/2024/05/example.jpg",
"biography": [
"Amanda Silberling is a senior writer at TechCrunch covering the intersection of technology and culture."
],
"social_links": {
"twitter": "https://twitter.com/asilbwrites",
"bluesky": "https://bsky.app/profile/amanda.omg.lol",
"linkedin": "https://www.linkedin.com/in/amanda-silberling-29853093/"
},
"page": 1,
"articles": [
{
"title": "Example story",
"url": "https://techcrunch.com/2026/09/22/example-story/",
"category": "Social"
}
]
}
}curl "https://api.crawlora.net/api/v1/techcrunch/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"