Endpoint Playground
Test Crawlora's KFC Promotions 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/promotions?store_number=<store_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_number | string | Yes | KFC's alphanumeric store number, from /kfc/stores or /kfc/nearby |
{
"code": 200,
"msg": "OK",
"data": {
"store_number": "I824001",
"promotions": [
{
"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": true
}
],
"count": 15,
"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 restaurant's current public promotions -- current deals and offers KFC's storefront marks as public, with each promotion's id, internal and display name, description, and whether it applies automatically or requires a redemption code. A store with no active public promotions returns an empty list rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"store_number": "I824001",
"promotions": [
{
"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": true
}
],
"count": 15,
"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/promotions?store_number=<store_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"