Skip to main content
GET
/
projects
List projects
curl --request GET \
  --url https://app.leonar.app/api/v1/projects \
  --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
    }
  ],
  "meta": {
    "total": 142,
    "limit": 50,
    "offset": 0,
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

API key starting with leo_

Query Parameters

limit
integer
default:50

Items per page

Required range: 1 <= x <= 100
offset
integer
default:0

Items to skip

Required range: x >= 0
status
enum<string>
default:all
Available options:
active,
archived,
all
owner_id
string<uuid>
sort
string
default:-updated_at

Options: created_at, updated_at, name

Response

List of projects

data
object[]
meta
object
Example:
{
"total": 142,
"limit": 50,
"offset": 0,
"has_more": true
}