Skip to main content
GET
/
projects
/
{id}
Get a project
curl --request GET \
  --url https://app.leonar.app/api/v1/projects/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "d4e5f6a7-8901-23bc-defa-456789012cde",
    "name": "Senior Frontend Engineers - Paris",
    "status": "active",
    "client_name": "Jean Dupont",
    "client_company": "Doctolib",
    "location": "Paris, France",
    "description": "Hiring 3 senior frontend engineers for the patient portal team",
    "template_id": null,
    "created_at": "2025-01-20T09:00:00Z",
    "updated_at": "2025-02-10T14:00:00Z",
    "owners": [
      {
        "user_id": "f6a7b8c9-0123-45de-fabc-678901234ef0",
        "first_name": "Alice",
        "last_name": "Recruiter",
        "email": "alice@leonar.ai"
      }
    ],
    "entries_count": 42
  }
}

Authorizations

Authorization
string
header
required

API key starting with leo_

Path Parameters

id
string<uuid>
required

Project ID

Response

Project details

data
object
Example:
{
"id": "d4e5f6a7-8901-23bc-defa-456789012cde",
"name": "Senior Frontend Engineers - Paris",
"status": "active",
"client_name": "Jean Dupont",
"client_company": "Doctolib",
"location": "Paris, France",
"description": "Hiring 3 senior frontend engineers for the patient portal team",
"template_id": null,
"created_at": "2025-01-20T09:00:00Z",
"updated_at": "2025-02-10T14:00:00Z",
"owners": [
{
"user_id": "f6a7b8c9-0123-45de-fabc-678901234ef0",
"first_name": "Alice",
"last_name": "Recruiter",
"email": "alice@leonar.ai"
}
],
"entries_count": 42
}