Queek API docs
Endpoint reference

Posts

GET
/store/posts

Published posts, paginated; filter by category or tag. Fetch one with posts/{slug}.

AuthorizationBearer <token>

Use a Sanctum bearer token.

In: header

Query Parameters

tag?|
Lengthlength <= 100
category?|
Lengthlength <= 140
per_page?|
Range1 <= value <= 50

Header Parameters

X-Client-Key*string

Your store API key (Dashboard → Settings → API keys). pk_live_… public keys are for browser code and only work from an origin on the key's allowlist; sk_live_… private keys are for servers and native apps and need no Origin.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/store/posts" \  -H "X-Client-Key: {{clientKey}}"
{}
GET
/store/posts/{slug}

A published post by slug with its cover image, excerpt and content[] blocks.

AuthorizationBearer <token>

Use a Sanctum bearer token.

In: header

Path Parameters

slug*string

Header Parameters

X-Client-Key*string

Your store API key (Dashboard → Settings → API keys). pk_live_… public keys are for browser code and only work from an origin on the key's allowlist; sk_live_… private keys are for servers and native apps and need no Origin.

Response Body

application/json

application/json

curl -X GET "https://example.com/store/posts/string" \  -H "X-Client-Key: {{clientKey}}"
{  "status": "success",  "message": "Store post retrieved",  "data": [],  "meta": "string"}