Skip to main content
GET
/
projects
/
{project_reference}
/
cache
/
keys
List Cache Keys
curl --request GET \
  --url https://api.veryfront.com/projects/{project_reference}/cache/keys \
  --header 'Authorization: Bearer <token>'
{
  "keys": [
    "<string>"
  ],
  "count": 123,
  "cursor": "<string>",
  "has_more": true
}

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a JWT bearer token or a Veryfront API key in the Authorization header.

Path Parameters

project_reference
string
required

Query Parameters

pattern
string

Provide the pattern. Optional key pattern filter such as "transform:*".

Required string length: 1 - 512
Pattern: ^[a-zA-Z0-9_:.*\-/]+$
cursor
string

Pagination cursor from a previous response.

limit
number
default:100

Maximum keys to return (default 100, min 1, max 1000).

Required range: 1 <= x <= 1000

Response

List of cache keys.

keys
string[]
required
count
number
required
cursor
string | null
required
has_more
boolean
required