Endpoint Playground
Test Crawlora's KFC Promotion 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/kfc/promotion" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| code | string | No | The redemption code as a customer would type it in at checkout. Exactly one of code or serialized_code is required | |
| serialized_code | string | No | A unique per-print serialized/QR code that resolves to a shared redemption code. Exactly one of code or serialized_code is required |
{
"code": 200,
"msg": "OK",
"data": {
"promotion_id": "6815f409-5b1e-44dc-9f99-26b1c1a2699a",
"name": "Digital-Q324 - 50% off Chicken Sandwich",
"display_name": "50% off Chicken Sandwich",
"description": "Digital - .Q324 - Get 50% off the purchase of a Chicken Sandwich. ",
"automatic": false,
"source_url": "https://www.kfc.com/api/kfc_us/storefront/graphql",
"fetched_at": "2026-09-03T00:00: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 promotion by its redemption code (the code a customer types in at checkout) or its serialized code (a unique per-print QR/serial code, e.g. from a printed coupon, that resolves to a shared redemption code and its promotion). Exactly one of code or serialized_code is required. A serialized-code lookup additionally returns that code's own usage metadata (redemption_code, times_used, code_status, group_status, effective_date, expiration_date) alongside the promotion. An unknown or expired code returns a 404 rather than a null success payload.
{
"code": 200,
"msg": "OK",
"data": {
"promotion_id": "6815f409-5b1e-44dc-9f99-26b1c1a2699a",
"name": "Digital-Q324 - 50% off Chicken Sandwich",
"display_name": "50% off Chicken Sandwich",
"description": "Digital - .Q324 - Get 50% off the purchase of a Chicken Sandwich. ",
"automatic": false,
"source_url": "https://www.kfc.com/api/kfc_us/storefront/graphql",
"fetched_at": "2026-09-03T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/kfc/promotion" \
-H "x-api-key: $CRAWLORA_API_KEY"