Endpoint Playground
Test Crawlora's Popeyes Rewards 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/popeyes/rewards" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Maximum rewards to return, 1-100 (default 20) | |
| offset | integer | No | Number of rewards to skip, for paging (default 0) | |
| market | string | No | Restaurant market: US (default) or CA |
{
"code": 200,
"msg": "OK",
"data": {
"rewards": [
{
"id": "09acd09f-2ca5-4259-934c-0345356b2bb0",
"name": "Large Mashed Potatoes",
"points": 600,
"mobile_order_only": false,
"incentive_not_in_menu": false
}
],
"count": 1,
"has_more": true,
"source_url": "https://czqk28jt.apicdn.sanity.io/v1/graphql/prod_plk_us/default",
"fetched_at": "2026-09-04T00: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 a page of Popeyes Rewards' points-redemption catalog -- menu items and combos a member can redeem directly for a fixed number of loyalty points (e.g. "600 points for Cheese Bites"), distinct from /popeyes/offers (priced deals), /popeyes/quests (challenges) and /popeyes/promotions (bonus-points campaigns). This is public CMS content, not a signed-in member's own points balance or redemption history. points is the loyalty points cost to redeem; other per-account/per-order redemption restrictions Popeyes may publish on a reward are not exposed by this endpoint.
{
"code": 200,
"msg": "OK",
"data": {
"rewards": [
{
"id": "09acd09f-2ca5-4259-934c-0345356b2bb0",
"name": "Large Mashed Potatoes",
"points": 600,
"mobile_order_only": false,
"incentive_not_in_menu": false
}
],
"count": 1,
"has_more": true,
"source_url": "https://czqk28jt.apicdn.sanity.io/v1/graphql/prod_plk_us/default",
"fetched_at": "2026-09-04T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/popeyes/rewards" \
-H "x-api-key: $CRAWLORA_API_KEY"