Endpoint Playground
Test Crawlora's 7NOW Product 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/7now/product?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| product_id | string | Yes | 7NOW product id, from GET /7now/search, /7now/catalog or /7now/category. |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "178322-2-6-2",
"slin": "178322",
"upc": "00072180687340",
"name": "Large Pizza - Ultimate Pepperoni",
"brand": "Hot Food Pizza",
"category": "Fresh Food",
"category_id": "48423",
"flavor_name": "Pepperoni Pizza",
"size_value": "1WholePizza",
"description": "Pepperoni Pizza loaded with julienne and diced pepperoni, mozzarella, provolone, and parmesan cheeses on red sauce.",
"calories": "360",
"age_restricted": false,
"limit_per_order": 100,
"tags": [
"Pizza"
],
"images": [
"https://deuktbth81ifn.cloudfront.net/7now/US/178322-2-6-2/wghjlebnc3luzvgqmpvz.jpg"
],
"nutrition": [
{
"group": "serving_size",
"entries": [
{
"name": "Serving Size",
"value": "1/8 pizza (111g)"
}
]
},
{
"group": "calories",
"entries": [
{
"name": "Calories",
"value": "360"
}
]
},
{
"group": "cholesterol",
"entries": [
{
"name": "Cholesterol",
"value": "45mg"
}
]
}
],
"nutrition_disclaimers": [
"Percent Daily Values are based on a 2,000 calorie diet."
],
"allergens": "CONTAINS MILK, SOY, WHEAT.",
"ingredients": [
"WHEAT FLOUR",
"WATER",
"SALT"
],
"flavor_choices": [
"Pepperoni Pizza",
"Cheese Pizza"
],
"size_choices": [
"1ct",
"1WholePizza"
],
"related_items": [
{
"product_id": "170776-1-8",
"name": "Whole Breakfast Pizza - Sausage",
"brand": "Hot Food Pizza",
"category": "Fresh Food",
"calories": "550",
"image_url": "https://deuktbth81ifn.cloudfront.net/7now/US/170776-1-8/c473df23034036e1c6c9980fc8f0b1f4e9e63096.jpg"
}
],
"promos": [
{
"id": "6a849a8fa1df2409010c719f",
"short_description": "On Sale $6.99",
"long_description": "$6.99 Whole Pizza!",
"promo_price_cents": 699,
"start_date": "08/21/2026",
"expiration_date": "01/05/2027"
}
],
"source_url": "https://www.7now.com/product/178322-2-6-2",
"fetched_at": "2026-09-05T21:10: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 product's complete reference record: description, the full nutrition panel (serving size, calories, fat, cholesterol, sodium, carbohydrates, protein, vitamins and allergen "contains" list), the declared ingredient list, the allergen statement, size and flavor variants, related products, and any attached promotions. product_id comes from GET /7now/search, /7now/catalog or /7now/category. This record is store-independent and deliberately carries no price, availability or stock -- use those three endpoints for per-store pricing and availability. An unknown product_id returns a 404.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "178322-2-6-2",
"slin": "178322",
"upc": "00072180687340",
"name": "Large Pizza - Ultimate Pepperoni",
"brand": "Hot Food Pizza",
"category": "Fresh Food",
"category_id": "48423",
"flavor_name": "Pepperoni Pizza",
"size_value": "1WholePizza",
"description": "Pepperoni Pizza loaded with julienne and diced pepperoni, mozzarella, provolone, and parmesan cheeses on red sauce.",
"calories": "360",
"age_restricted": false,
"limit_per_order": 100,
"tags": [
"Pizza"
],
"images": [
"https://deuktbth81ifn.cloudfront.net/7now/US/178322-2-6-2/wghjlebnc3luzvgqmpvz.jpg"
],
"nutrition": [
{
"group": "serving_size",
"entries": [
{
"name": "Serving Size",
"value": "1/8 pizza (111g)"
}
]
},
{
"group": "calories",
"entries": [
{
"name": "Calories",
"value": "360"
}
]
},
{
"group": "cholesterol",
"entries": [
{
"name": "Cholesterol",
"value": "45mg"
}
]
}
],
"nutrition_disclaimers": [
"Percent Daily Values are based on a 2,000 calorie diet."
],
"allergens": "CONTAINS MILK, SOY, WHEAT.",
"ingredients": [
"WHEAT FLOUR",
"WATER",
"SALT"
],
"flavor_choices": [
"Pepperoni Pizza",
"Cheese Pizza"
],
"size_choices": [
"1ct",
"1WholePizza"
],
"related_items": [
{
"product_id": "170776-1-8",
"name": "Whole Breakfast Pizza - Sausage",
"brand": "Hot Food Pizza",
"category": "Fresh Food",
"calories": "550",
"image_url": "https://deuktbth81ifn.cloudfront.net/7now/US/170776-1-8/c473df23034036e1c6c9980fc8f0b1f4e9e63096.jpg"
}
],
"promos": [
{
"id": "6a849a8fa1df2409010c719f",
"short_description": "On Sale $6.99",
"long_description": "$6.99 Whole Pizza!",
"promo_price_cents": 699,
"start_date": "08/21/2026",
"expiration_date": "01/05/2027"
}
],
"source_url": "https://www.7now.com/product/178322-2-6-2",
"fetched_at": "2026-09-05T21:10:00Z"
}
}curl "https://api.crawlora.net/api/v1/7now/product?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"