Skip to main content
GET
/
projects
/
{project_reference}
/
releases
/
version
/
{version_spec}
Get Release By Version
curl --request GET \
  --url https://api.veryfront.com/projects/{project_reference}/releases/version/{version_spec} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "project": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "export_status": "in_progress",
  "build_status": "in_progress",
  "deploy_status": "in_progress",
  "version": "<string>",
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "<string>",
  "updated_at": "<string>"
}

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

version_spec
string
required

Version specifier: "1.2.3" (exact), "1.2" (latest 1.2.x), or "1" (latest 1.x.x)

Example:

"1.2.3"

Response

Release found

id
string<uuid>
required
name
string
required
project
string<uuid>
required
export_status
enum<string>
required
Available options:
in_progress,
completed,
error
build_status
enum<string>
required
Available options:
in_progress,
completed,
error
deploy_status
enum<string>
required
Available options:
in_progress,
completed,
error
version
string | null

Semver version (e.g., "1.2.3")

user_id
string<uuid>
created_at
string
updated_at
string