GET
/
v1
/
projects
/
{project_id}
/
programs
List Project Programs
curl --request GET \
  --url https://api.axiom.xyz/v1/projects/{project_id}/programs \
  --header 'Axiom-API-Key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "status": "ready",
      "error_message": "",
      "name": "<string>",
      "created_by": "<string>",
      "last_active_at": "2023-11-07T05:31:56Z",
      "launched_at": "2023-11-07T05:31:56Z",
      "terminated_at": "2023-11-07T05:31:56Z",
      "config_uuid": "<string>",
      "program_hash": "<string>",
      "openvm_config": "<string>",
      "cells_used": 123,
      "proofs_run": 123,
      "commit_sha": "<string>",
      "project_id": "<string>",
      "project_name": "<string>",
      "project_highlighted_program_id": "<string>"
    }
  ],
  "pagination": {
    "total": 123,
    "page": 123,
    "page_size": 123,
    "pages": 123
  }
}

Authorizations

Axiom-API-Key
string
header
required

Path Parameters

project_id
string
required

Query Parameters

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

Response

200
application/json

Project programs retrieved successfully

The response is of type object.