OpenRelay Registry Credentials API

Private container-registry credentials for pulling images.

Operations 3

GET /v1/orgs/{orgId}/registry-credentials List an org's registry credentials (no secrets) #
POST /v1/orgs/{orgId}/registry-credentials/create Create a registry credential (credentials stored encrypted) #
DELETE /v1/orgs/{orgId}/registry-credentials/{id} Delete a registry credential #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/openrelay-registry-credentials-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

openrelay-registry-credentials-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'The OpenRelay control-plane REST API. Deploy GPU VMs and inference clusters, manage organizations and billing, and automate your infrastructure. All requests are authenticated with an API key (`vl_…`) unless noted otherwise.

    '
  title: OpenRelay Account Registry Credentials API
  version: 0.1.0
servers:
- description: Production
  url: https://api.openrelay.inc
- description: Beta
  url: https://api.beta.openrelay.inc
- description: Local development
  url: http://localhost:8083
tags:
- description: Private container-registry credentials for pulling images.
  name: Registry Credentials
paths:
  /v1/orgs/{orgId}/registry-credentials:
    get:
      operationId: listOrgRegistryCredentials
      parameters:
      - in: path
        name: orgId
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/RegistryCredentialSummary'
                type: array
          description: Registry credentials
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
      security:
      - apiKey: []
      summary: List an org's registry credentials (no secrets)
      tags:
      - Registry Credentials
  /v1/orgs/{orgId}/registry-credentials/create:
    post:
      operationId: createOrgRegistryCredential
      parameters:
      - in: path
        name: orgId
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateRegistryCredentialRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RegistryCredentialSummary'
          description: Created
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Invalid request
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
      security:
      - apiKey: []
      summary: Create a registry credential (credentials stored encrypted)
      tags:
      - Registry Credentials
  /v1/orgs/{orgId}/registry-credentials/{id}:
    delete:
      operationId: deleteOrgRegistryCredential
      parameters:
      - in: path
        name: orgId
        required: true
        schema:
          type: string
      - in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Deleted
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
      security:
      - apiKey: []
      summary: Delete a registry credential
      tags:
      - Registry Credentials
      x-openrelay-mcp:
        destructiveHint: true
components:
  schemas:
    Error:
      properties:
        code:
          type: string
        error:
          type: string
      required:
      - error
      type: object
    CreateRegistryCredentialRequest:
      properties:
        authType:
          enum:
          - basic
          - aws_ecr
          - gcp_gcr
          type: string
        credentials:
          additionalProperties:
            type: string
          type: object
        name:
          type: string
        server:
          type: string
      required:
      - name
      - server
      - authType
      - credentials
      type: object
    RegistryCredentialSummary:
      properties:
        authType:
          type: string
        createdAt:
          type: string
        id:
          type: string
        name:
          type: string
        server:
          type: string
      required:
      - id
      - name
      - server
      - authType
      - createdAt
      type: object
  responses:
    Forbidden:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
      description: API key lacks the required scope
    Unauthorized:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Missing or invalid API key
  securitySchemes:
    apiKey:
      description: 'OpenRelay API key. Send it as `Authorization: Bearer vl_…`.'
      scheme: bearer
      type: http