Skip to main content
GET
/
projects
/
{project_reference}
/
chunks
List Project Chunks
curl --request GET \
  --url https://api.veryfront.com/projects/{project_reference}/chunks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "file_path": "<string>",
      "file_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "file_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "index": 123,
      "content": "<string>",
      "start_offset": 123,
      "end_offset": 123,
      "token_count": 123
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

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

limit
number
default:100
Required range: 1 <= x <= 100
offset
number | null
default:0
Required range: x >= 0

Response

List of chunks

data
object[]
required
total
number
required
limit
number
required
offset
number
required