Endpoint Playground
Test Crawlora's Slate article content 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/slate/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical HTTPS Slate article URL |
{
"code": 200,
"msg": "OK",
"data": {
"url": "https://slate.com/news-and-politics/2026/09/example.html",
"title": "Example Slate story",
"description": "A short description.",
"published_at": "2026-09-22T09:45:00+00:00",
"updated_at": "2026-09-22T10:00:00+00:00",
"section": "Politics",
"authors": [
"Example Reporter"
],
"image_url": "https://compote.slate.com/images/example.jpg",
"tags": [
"politics"
],
"is_paywalled": true,
"paragraphs": [
"The first body paragraph."
],
"headings": [
"A section heading"
]
}
}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 public Slate article metadata and server-delivered body paragraphs from a canonical dated Slate URL. It does not log in, use account cookies, or bypass a challenge; is_paywalled reports when Slate marks the delivered page as subscription-gated.
{
"code": 200,
"msg": "OK",
"data": {
"url": "https://slate.com/news-and-politics/2026/09/example.html",
"title": "Example Slate story",
"description": "A short description.",
"published_at": "2026-09-22T09:45:00+00:00",
"updated_at": "2026-09-22T10:00:00+00:00",
"section": "Politics",
"authors": [
"Example Reporter"
],
"image_url": "https://compote.slate.com/images/example.jpg",
"tags": [
"politics"
],
"is_paywalled": true,
"paragraphs": [
"The first body paragraph."
],
"headings": [
"A section heading"
]
}
}curl "https://api.crawlora.net/api/v1/slate/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"