Endpoint Playground
Test Crawlora's Fanatics Collect 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/fanaticscollect/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"marketplaces": [
"WEEKLY",
"PREMIER",
"FIXED"
],
"category_parents": [
"Sports Cards",
"Trading Card Games",
"Other",
"Video Games",
"Comics"
],
"sub_categories": [
{
"category_parent": "Sports Cards",
"name": "Baseball",
"path": "Sports Cards > Baseball"
},
{
"category_parent": "Trading Card Games",
"name": "Pokémon (English)",
"path": "Trading Card Games > Pokémon (English)"
}
],
"grading_services": [
"Ungraded",
"CGC",
"PSA",
"BGS",
"SGC"
],
"statuses": [
"LIVE",
"SOLD",
"ALL"
],
"sort_options": [
{
"value": "best_value",
"display_name": "Best Value"
},
{
"value": "lowest_price",
"display_name": "Lowest Price"
}
],
"sold_item_categories": [
"Trading Cards",
"Baseball",
"Basketball"
],
"sold_item_grading_services": [
"PSA",
"SGC",
"BGS",
"BVG",
"BCCG",
"CGC",
"CSG",
"ungraded"
],
"eye_appeal_grades": [
"Eye Appeal - A",
"Eye Appeal - E",
"Eye Appeal - S"
],
"sold_item_sort_options": [
{
"value": "sold_date_desc",
"display_name": "Most Recently Sold"
},
{
"value": "highest_price",
"display_name": "Highest Price"
}
]
}
}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 every accepted value for GetListing's marketplace param -- WEEKLY, PREMIER, FIXED -- and for Search's marketplace, category_parent, sub_category, grading_service, status, and sort params. Discovery endpoint for those closed enums.
{
"code": 200,
"msg": "OK",
"data": {
"marketplaces": [
"WEEKLY",
"PREMIER",
"FIXED"
],
"category_parents": [
"Sports Cards",
"Trading Card Games",
"Other",
"Video Games",
"Comics"
],
"sub_categories": [
{
"category_parent": "Sports Cards",
"name": "Baseball",
"path": "Sports Cards > Baseball"
},
{
"category_parent": "Trading Card Games",
"name": "Pokémon (English)",
"path": "Trading Card Games > Pokémon (English)"
}
],
"grading_services": [
"Ungraded",
"CGC",
"PSA",
"BGS",
"SGC"
],
"statuses": [
"LIVE",
"SOLD",
"ALL"
],
"sort_options": [
{
"value": "best_value",
"display_name": "Best Value"
},
{
"value": "lowest_price",
"display_name": "Lowest Price"
}
],
"sold_item_categories": [
"Trading Cards",
"Baseball",
"Basketball"
],
"sold_item_grading_services": [
"PSA",
"SGC",
"BGS",
"BVG",
"BCCG",
"CGC",
"CSG",
"ungraded"
],
"eye_appeal_grades": [
"Eye Appeal - A",
"Eye Appeal - E",
"Eye Appeal - S"
],
"sold_item_sort_options": [
{
"value": "sold_date_desc",
"display_name": "Most Recently Sold"
},
{
"value": "highest_price",
"display_name": "Highest Price"
}
]
}
}curl "https://api.crawlora.net/api/v1/fanaticscollect/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"