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
}

Authorizations

Authorization
string
header
required

Authentication via JWT token or API key. JWT: Get from Veryfront dashboard. API Key: Format "vf__" - create via /api-keys endpoint.

Path Parameters

project_reference
string
required

Project ID or slug

Query Parameters

pattern
string

Pattern filter (e.g., "transform:*")

Required string length: 1 - 512
cursor
string

Pagination cursor

limit
number
default:100

Max keys to return (1-1000, default: 100)

Required range: 1 <= x <= 1000

Response

List of cache keys

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