GET
/
v1
/
projects
List Projects
curl --request GET \
  --url https://api.axiom.xyz/v1/projects \
  --header 'Axiom-API-Key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "name": "<string>",
      "organization_id": 123,
      "highlighted_program_id": "<string>",
      "highlighted_program_pinned": true,
      "created_by": "<string>",
      "program_count": 123,
      "total_proofs_run": 123,
      "last_active_at": "2023-11-07T05:31:56Z",
      "total_usage_count": 123,
      "is_favorite": true
    }
  ],
  "pagination": {
    "total": 123,
    "page": 123,
    "page_size": 123,
    "pages": 123
  }
}

Authorizations

Axiom-API-Key
string
header
required

Query Parameters

page
integer
default:1
Required range: x >= 1
page_size
integer
default:20
Required range: 1 <= x <= 100

Search projects by name or ID

sort_by
string
default:created_at

Sort by: created_at, name, last_active_at, program_count, total_proofs_run

sort_direction
string
default:desc

Sort direction: asc or desc

Response

200
application/json

Projects retrieved successfully

The response is of type object.