Endpoint Playground
Test Crawlora's New York Post 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/nypost/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical New York Post author URL |
{
"code": 200,
"data": {
"url": "https://nypost.com/author/jane-doe/",
"name": "Jane Doe",
"image_url": "https://nypost.com/wp-content/uploads/sites/2/2013/08/jane-doe.png",
"biography": [
"Jane Doe is a columnist at the New York Post."
],
"social_links": [
{
"type": "rss",
"url": "https://nypost.com/author/jane-doe/feed/"
}
],
"articles": [
{
"title": "City Council passes new budget plan",
"url": "https://nypost.com/2026/09/20/us-news/city-council-passes-new-budget-plan",
"published_at": "September 20, 2026 | 10:06pm"
}
]
}
}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 New York Post author's byline metadata, biography, social links, and recent articles from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://nypost.com/author/jane-doe/",
"name": "Jane Doe",
"image_url": "https://nypost.com/wp-content/uploads/sites/2/2013/08/jane-doe.png",
"biography": [
"Jane Doe is a columnist at the New York Post."
],
"social_links": [
{
"type": "rss",
"url": "https://nypost.com/author/jane-doe/feed/"
}
],
"articles": [
{
"title": "City Council passes new budget plan",
"url": "https://nypost.com/2026/09/20/us-news/city-council-passes-new-budget-plan",
"published_at": "September 20, 2026 | 10:06pm"
}
]
}
}curl "https://api.crawlora.net/api/v1/nypost/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"