Endpoint Playground
Test Crawlora's Popeyes FAQ 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/faq" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Maximum FAQ entries to return, 1-100 (default 20) | |
| offset | integer | No | Number of FAQ entries to skip, for paging (default 0) |
{
"code": 200,
"msg": "OK",
"data": {
"entries": [
{
"id": "032999c6-ba27-4f8e-b20e-a4cb28e3c37c",
"question": "How do I remove items from my cart?",
"answer": "Please follow these steps to remove any items from your cart: On our Website: 1) From the Home Page, click on your cart..."
}
],
"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' published customer-support FAQ -- questions and answers such as "How do I remove items from my cart?". This is public help-center content, not account/order-specific support state, and does not require an order id or any customer identifier.
{
"code": 200,
"msg": "OK",
"data": {
"entries": [
{
"id": "032999c6-ba27-4f8e-b20e-a4cb28e3c37c",
"question": "How do I remove items from my cart?",
"answer": "Please follow these steps to remove any items from your cart: On our Website: 1) From the Home Page, click on your cart..."
}
],
"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/faq" \
-H "x-api-key: $CRAWLORA_API_KEY"