Projects
Get a project
Retrieve a single project by its ID.
GEThttps://api.vantaj.co/v1/projects/{id}
Requires an API key with the projects:read scope.
Authorizations
Authorizationstringheaderrequired
Bearer authentication using your API key: Authorization: Bearer <token>
Path parameters
idstring<uuid>required
The project ID.
Get a project
cURL
curl --request GET \
--url 'https://api.vantaj.co/v1/projects/<id>' \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"name": "Production",
"color": "violet",
"created_at": "2026-01-15T10:30:00Z"
}
}