Skip to main content
GET
/
projects
/
{project_reference}
/
branches
List Branches
curl --request GET \
  --url https://api.veryfront.com/projects/{project_reference}/branches \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "base_branch_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "<string>",
      "created_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "merged_at": "<string>",
      "merged_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}

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
Example:

"my-project"

Query Parameters

Search filter for branch name (case-insensitive partial match)

Example:

"feature"

status
enum<string>
default:all

Filter by branch status

Available options:
active,
merged,
all
Example:

"active"

Response

List of branches

data
object[]
required