Endpoint Playground
Test Crawlora's Steve Madden Page 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/stevemadden/pages/<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle (path) | string | Yes | Page handle |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.stevemadden.com",
"source_url": "https://www.stevemadden.com",
"page": {
"id": "54831906896",
"handle": "example-page-handle",
"title": "Example Page",
"url": "https://www.stevemadden.com/pages/example-page-handle",
"content": "Example page content"
}
}
}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 normalized static page detail for one Steve Madden (https://www.stevemadden.com) page handle. The storefront URL is fixed server-side.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.stevemadden.com",
"source_url": "https://www.stevemadden.com",
"page": {
"id": "54831906896",
"handle": "example-page-handle",
"title": "Example Page",
"url": "https://www.stevemadden.com/pages/example-page-handle",
"content": "Example page content"
}
}
}curl "https://api.crawlora.net/api/v1/stevemadden/pages/<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"