GET
/
v0
/
interfaces
/
list
curl --request GET \
  --url 'https://api.unify.ai/v0/interfaces/list?project=None&checkpoint=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    {
        "id": "123",
        "name": "my_interface",
        "project_id": "proj_abc",
        "tabs": [],
        "color": "blue",
        "is_checkpoint": false,
        "created_at": "2024-01-01T12:00:00Z",
        "updated_at": "2024-01-01T12:00:00Z"
    }
]

List all interfaces for a project.

Authorizations

Authorization
string
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

project
string
required

The project ID to list interfaces for

checkpoint
boolean

Whether to list checkpoint versions (manually saved)

curl --request GET \
  --url 'https://api.unify.ai/v0/interfaces/list?project=None&checkpoint=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    {
        "id": "123",
        "name": "my_interface",
        "project_id": "proj_abc",
        "tabs": [],
        "color": "blue",
        "is_checkpoint": false,
        "created_at": "2024-01-01T12:00:00Z",
        "updated_at": "2024-01-01T12:00:00Z"
    }
]