Endpoint Playground
Test Crawlora's Domino's Customization 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/dominos/customization?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | Domino's store id, from /dominos/store-locator |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "4336",
"groups": [
{
"category": "BuildYourOwnDomino",
"sizes": [
{
"code": "PERS",
"name": "Personal",
"description": "10\" x 4\""
}
],
"flavors": [
{
"code": "HANDTOSS",
"name": "Hand Tossed",
"description": "Garlic-seasoned crust with a rich, buttery taste.",
"attributes": {
"AllowedSeasonings": "GOBH:NoGOB",
"DefaultSeasonings": "GOBH"
}
}
],
"toppings": [
{
"code": "K",
"name": "Bacon",
"flags": [
"Meat"
]
}
]
}
],
"cooking_instructions": [
{
"code": "PIECT",
"name": "Pie Cut",
"group": "CUT"
},
{
"code": "WD",
"name": "Well Done",
"group": "BAKE"
}
],
"count": 142,
"source_url": "https://order.dominos.com/power/store/4336/menu?lang=en&structured=true",
"fetched_at": "2026-09-02T09:40:00Z"
}
}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 one Domino's US store's full build-your-own customization catalog, grouped by product category (Domino's own internal names, e.g. "BuildYourOwnDomino" for pizza, "GSalad" for garden salads): every selectable size, crust/flavor style, topping, and side, each with its own code, name, description, dietary/placement flags (e.g. Meat, Vege, Sauce, WholeOnly), and any other attributes Domino's attaches (e.g. ExclusiveGroup for mutually-exclusive options). Also returns cooking instructions (bake level, cut style, seasoning), grouped. Reads the same structured menu response as GET /dominos/menu, so it costs no additional upstream request. Store ids come from GET /dominos/store-locator. An unknown store id returns 404.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "4336",
"groups": [
{
"category": "BuildYourOwnDomino",
"sizes": [
{
"code": "PERS",
"name": "Personal",
"description": "10\" x 4\""
}
],
"flavors": [
{
"code": "HANDTOSS",
"name": "Hand Tossed",
"description": "Garlic-seasoned crust with a rich, buttery taste.",
"attributes": {
"AllowedSeasonings": "GOBH:NoGOB",
"DefaultSeasonings": "GOBH"
}
}
],
"toppings": [
{
"code": "K",
"name": "Bacon",
"flags": [
"Meat"
]
}
]
}
],
"cooking_instructions": [
{
"code": "PIECT",
"name": "Pie Cut",
"group": "CUT"
},
{
"code": "WD",
"name": "Well Done",
"group": "BAKE"
}
],
"count": 142,
"source_url": "https://order.dominos.com/power/store/4336/menu?lang=en&structured=true",
"fetched_at": "2026-09-02T09:40:00Z"
}
}curl "https://api.crawlora.net/api/v1/dominos/customization?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"