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_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "index": 123,
      "content": "<string>",
      "start_offset": 123,
      "end_offset": 123,
      "token_count": 123,
      "file_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "page_info": {
    "self": "<string>",
    "first": null,
    "next": "<string>",
    "prev": "<string>"
  }
}

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

Project ID or slug.

Query Parameters

cursor
string

Offset cursor returned from page_info.next or page_info.prev.

limit
number
default:100

Maximum number of chunks to return, from 1 to 100.

Required range: 1 <= x <= 100

Response

List of project chunks.

data
object[]
required

Indexed chunks for the project.

page_info
object
required

Pagination cursor values for traversing the result set.