Container registries

List container registries

List all container registry configurations for a project. Requires project reader.

GET
/v1/orgs/{org}/projects/{project}/registries

List all container registry configurations for a project. Requires project reader.

AuthorizationBearer <token>

API key starting with tektona_. Create one at app-dev.tektona.ai under API Keys.

In: header

Path Parameters

org*string

Organization name

Match^[a-z0-9][a-z0-9-]*[a-z0-9]$
Length2 <= length <= 64
project*string

Project name

Match^[a-z0-9][a-z0-9-]*[a-z0-9]$
Length2 <= length <= 64

Query Parameters

cursor?string

Opaque pagination cursor from a previous response

limit?integer

Maximum number of items to return (1–100)

Default20
Formatint32
Range1 <= value <= 100

Response Body

application/json

application/problem+json

curl -X GET "https://api-dev.tektona.ai/v1/orgs/string/projects/string/registries"
{  "$schema": "https://api-dev.tektona.ai/schemas/ListRegistriesBody.json",  "items": [    {      "$schema": "https://api-dev.tektona.ai/schemas/RegistryResponse.json",      "auth_type": "basic",      "created_at": "string",      "display_name": "My GitHub Registry",      "endpoint": "ghcr.io",      "has_credentials": true,      "id": "string",      "name": "my-ghcr",      "namespace": "my-org",      "owner": {        "project": {          "display_name": "string",          "name": "string"        },        "type": "project"      },      "updated_at": "string"    }  ],  "pagination": {    "has_more": true,    "next_cursor": "string",    "total_count": 0  }}