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"
    }
  ]
}

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

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 (default: all)

Available options:
active,
merged,
all
Example:

"active"

Response

List of branches

data
object[]
required