Upbound Robots API

Robot account and token management

Operations 5

GET /organizations/{orgName}/robots List Robots #
POST /organizations/{orgName}/robots Create Robot #
GET /organizations/{orgName}/robots/{robotName} Get Robot #
DELETE /organizations/{orgName}/robots/{robotName} Delete Robot #
POST /organizations/{orgName}/robots/{robotName}/tokens Create Robot Token #

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/upbound-robots-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

upbound-robots-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Upbound Control Planes Robots API
  description: Upbound is a universal cloud platform built on Crossplane, providing managed control planes and a marketplace for cloud infrastructure APIs. The Upbound API enables programmatic management of organizations, spaces, control planes, groups, repositories, robot accounts, and IAM resources through a REST interface.
  version: v1
  contact:
    name: Upbound Support
    url: https://docs.upbound.io
  termsOfService: https://www.upbound.io/terms
servers:
- url: https://api.upbound.io/v1
  description: Upbound Cloud API
security:
- BearerToken: []
tags:
- name: Robots
  description: Robot account and token management
paths:
  /organizations/{orgName}/robots:
    get:
      operationId: listRobots
      summary: List Robots
      description: List all robot accounts in an organization.
      tags:
      - Robots
      parameters:
      - name: orgName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of robot accounts
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RobotList'
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      operationId: createRobot
      summary: Create Robot
      description: Create a new robot account for CI/CD automation.
      tags:
      - Robots
      parameters:
      - name: orgName
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RobotRequest'
      responses:
        '201':
          description: Robot account created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Robot'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /organizations/{orgName}/robots/{robotName}:
    get:
      operationId: getRobot
      summary: Get Robot
      description: Retrieve details of a specific robot account.
      tags:
      - Robots
      parameters:
      - name: orgName
        in: path
        required: true
        schema:
          type: string
      - name: robotName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Robot account details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Robot'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      operationId: deleteRobot
      summary: Delete Robot
      description: Delete a robot account.
      tags:
      - Robots
      parameters:
      - name: orgName
        in: path
        required: true
        schema:
          type: string
      - name: robotName
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Robot account deleted
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /organizations/{orgName}/robots/{robotName}/tokens:
    post:
      operationId: createRobotToken
      summary: Create Robot Token
      description: Create a new API token for a robot account.
      tags:
      - Robots
      parameters:
      - name: orgName
        in: path
        required: true
        schema:
          type: string
      - name: robotName
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  description: Token name
      responses:
        '201':
          description: Robot token created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RobotToken'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    Unauthorized:
      description: Authentication token missing or invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    BadRequest:
      description: Invalid request body or parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Robot:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        organizationName:
          type: string
        createdAt:
          type: string
          format: date-time
    Error:
      type: object
      properties:
        status:
          type: integer
        message:
          type: string
        details:
          type: string
    RobotRequest:
      type: object
      required:
      - name
      properties:
        name:
          type: string
        description:
          type: string
    RobotToken:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        token:
          type: string
          description: Secret token value (only returned on creation)
        createdAt:
          type: string
          format: date-time
    RobotList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Robot'
        count:
          type: integer
  securitySchemes:
    BearerToken:
      type: http
      scheme: bearer
      description: Upbound personal access token or robot token