List FAQs
GET
https://backend.sindri1.stacks.localbusiness.pro/api/v1/faqsReturns a paginated list of active FAQs.
X-Public-KeystringrequiredYour business public key. Used to identify which business is making the request.
X-TimestampstringrequiredCurrent Unix timestamp in seconds. Requests older than 5 minutes are rejected.
X-SignaturestringrequiredHMAC-SHA256 signature of the signing string: {timestamp}\n{METHOD}\n{path}\n{body}, using your private key as the secret.
pageintegerPage number (1-indexed).
per_pageintegerItems per page (max 100). Default: 25.
Values: 1-100
Responses
{
"faqs": [
{
"id": 1,
"business_id": 123,
"name": "Hours FAQ",
"question": "What are your business hours?",
"answer": "We're open Monday through Friday, 8am to 6pm.",
"customer_types": [
"New Customer"
],
"active": true,
"date_created": "2026-04-15 10:30:00",
"date_updated": "2026-04-20 14:22:00"
}
],
"pagination": {
"current_page": 1,
"per_page": 25,
"total_items": 8,
"total_pages": 1
}
}Authentication — HMAC-SHA256
Every authenticated request requires three headers:
X-Public-KeyYour business public keyX-TimestampUnix timestamp (seconds)X-SignatureHMAC-SHA256 of signing stringSigning string: {timestamp}\n{METHOD}\n{path}\n{body}
Request
GET
https://backend.sindri1.stacks.localbusiness.pro/api/v1/faqsRate Limits
With X-Public-Key: 60 req/min per key
Without: 10 req/min per IP
Code Examples
PUBLIC_KEY="pk_live_..."
PRIVATE_KEY="sk_live_..."
TIMESTAMP=$(date +%s)
PATH_URI="/api/v1/faqs"
SIGNATURE=$(printf '%s\n%s\n%s\n' "$TIMESTAMP" "GET" "$PATH_URI" \
| openssl dgst -sha256 -hmac "$PRIVATE_KEY" | awk '{print $2}')
curl -H "X-Public-Key: $PUBLIC_KEY" \
-H "X-Timestamp: $TIMESTAMP" \
-H "X-Signature: $SIGNATURE" \
"https://backend.sindri1.stacks.localbusiness.pro$PATH_URI"