Endpoint Playground
Test Crawlora's MIT Sloan Review Article Index 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/sloanreview/articles" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page | integer | No | 1-based page number (default 1) | |
| page_size | integer | No | Items per page, 1-500 (default 100) |
{
"code": 200,
"data": {
"has_next": true,
"items": [
{
"last_modified": "sample",
"url": "https://example.com/resource"
}
],
"page": 1,
"page_size": 1,
"total": 1,
"total_pages": 1
},
"msg": "OK"
}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 paginated, sitemap-backed index of all article URLs currently published by MIT Sloan Management Review. Use an item's URL with sloanreview-article to request archive-backed body content; archive availability remains dependent on a public snapshot existing for that article.
{
"code": 200,
"data": {
"has_next": true,
"items": [
{
"last_modified": "sample",
"url": "https://example.com/resource"
}
],
"page": 1,
"page_size": 1,
"total": 1,
"total_pages": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/sloanreview/articles" \
-H "x-api-key: $CRAWLORA_API_KEY"