Endpoint Playground
Test Crawlora's List all Target categories 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/target/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"data": {
"categories": [
{
"id": "5xt1a",
"image_url": "https://example.com/resource",
"name": "Grocery",
"url": "https://www.target.com/c/grocery/-/N-5xt1a"
}
],
"count": 29,
"fetched_at": "sample",
"group_count": 16,
"groups": [
{
"categories": [
{
"id": "5xt1a",
"image_url": "https://example.com/resource",
"name": "Grocery",
"url": "https://www.target.com/c/grocery/-/N-5xt1a"
}
],
"name": "Grocery"
}
],
"source_url": "https://example.com/resource"
},
"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 Target's current top-level category menu and the complete grouped shop-all directory, including category ids and canonical URLs.
{
"code": 200,
"data": {
"categories": [
{
"id": "5xt1a",
"image_url": "https://example.com/resource",
"name": "Grocery",
"url": "https://www.target.com/c/grocery/-/N-5xt1a"
}
],
"count": 29,
"fetched_at": "sample",
"group_count": 16,
"groups": [
{
"categories": [
{
"id": "5xt1a",
"image_url": "https://example.com/resource",
"name": "Grocery",
"url": "https://www.target.com/c/grocery/-/N-5xt1a"
}
],
"name": "Grocery"
}
],
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/target/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"