Paperspace Container Registries API

Manage container registry credentials used by Paperspace Deployments to pull private images, including a test-connection endpoint that verifies the configured credentials.

Operations 6

GET /container-registries List Container Registries #
POST /container-registries Create Container Registry #
GET /container-registries/{id} Get Container Registry #
PUT /container-registries/{id} Update Container Registry #
DELETE /container-registries/{id} Delete Container Registry #
GET /container-registries/{id}/test-connection Test Container Registry Connection #

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/paperspace-container-registries-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

paperspace-container-registries-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Paperspace Activity Container Registries API
  version: v1
  description: 'Manage container registry credentials used by Paperspace Deployments to

    pull private images. Authenticate with a team-scoped API key as

    `Authorization: Bearer $API_TOKEN`.

    '
servers:
- url: https://api.paperspace.com/v1
  description: Production
security:
- bearerAuth: []
tags:
- name: Container Registries
paths:
  /container-registries:
    get:
      tags:
      - Container Registries
      operationId: listContainerRegistries
      summary: List Container Registries
      description: Lists container registries for the current team.
      responses:
        '200':
          description: Registry list.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ContainerRegistry'
    post:
      tags:
      - Container Registries
      operationId: createContainerRegistry
      summary: Create Container Registry
      description: Creates a container registry for the current team.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ContainerRegistryCreate'
      responses:
        '201':
          description: Registry created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContainerRegistry'
  /container-registries/{id}:
    parameters:
    - in: path
      name: id
      required: true
      schema:
        type: string
    get:
      tags:
      - Container Registries
      operationId: getContainerRegistry
      summary: Get Container Registry
      description: Gets a container registry for the current team.
      responses:
        '200':
          description: Container registry.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContainerRegistry'
    put:
      tags:
      - Container Registries
      operationId: updateContainerRegistry
      summary: Update Container Registry
      description: Updates a container registry for the current team.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ContainerRegistryCreate'
      responses:
        '200':
          description: Updated registry.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContainerRegistry'
    delete:
      tags:
      - Container Registries
      operationId: deleteContainerRegistry
      summary: Delete Container Registry
      description: Deletes a container registry for the current team.
      responses:
        '204':
          description: Deleted.
  /container-registries/{id}/test-connection:
    parameters:
    - in: path
      name: id
      required: true
      schema:
        type: string
    get:
      tags:
      - Container Registries
      operationId: testContainerRegistryConnection
      summary: Test Container Registry Connection
      description: Validates that a container registry can be connected to using the provided credentials.
      responses:
        '200':
          description: Connection result.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
components:
  schemas:
    ContainerRegistryCreate:
      type: object
      required:
      - name
      - url
      - username
      - password
      properties:
        name:
          type: string
        url:
          type: string
        username:
          type: string
        password:
          type: string
    ContainerRegistry:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        url:
          type: string
        username:
          type: string
        teamId:
          type: string
        dtCreated:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: api-key