Credentially Stages API

Kanban placement stages — per-org column definitions for the placements board.

Operations 3

PUT /api/stages/{publicId} Update a stage's mutable fields (rename / recolour / enable-disable) #
PUT /api/stages/order Reorder all stages #
GET /api/stages List stages (ordered, with cap meta) #

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/credentially-stages-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 email required.

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

OpenAPI Specification

credentially-stages-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Credentially Public Compliance-packages Stages API
  description: Public API Proxy with Rate Limiting and Audit
  version: 2.0.0
servers:
- url: https://app.credentially.io/gateway
  description: Generated server url
tags:
- name: Stages
  description: Kanban placement stages — per-org column definitions for the placements board.
paths:
  /api/stages/{publicId}:
    put:
      tags:
      - Stages
      summary: Update a stage's mutable fields (rename / recolour / enable-disable)
      description: '


        **Rate Limit:** `update-stage` (25 req / 1s)'
      operationId: update
      parameters:
      - name: publicId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: X-API-Version
        in: header
        schema:
          type: string
          default: 2.0.0
          enum:
          - 2.0.0
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateStageRequest'
        required: true
      responses:
        '200':
          description: Stage updated.
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/StageResponse'
        '400':
          description: Validation failed (name blank, colour not hex)
        '404':
          description: Stage not found in this organisation
        '409':
          description: Name collides with an existing stage
        '429':
          description: Too many requests - the rate limit for this endpoint has been exceeded. Use the Retry-After header to determine when to retry.
          headers:
            Retry-After:
              description: Number of seconds to wait before retrying the request.
              schema:
                type: integer
                format: int32
                example: 1
      security:
      - bearer-key: []
  /api/stages/order:
    put:
      tags:
      - Stages
      summary: Reorder all stages
      description: 'Total reorder — the full left-to-right list of every stage public id in the org.


        **Rate Limit:** `reorder-stages` (25 req / 1s)'
      operationId: reorder
      parameters:
      - name: X-API-Version
        in: header
        schema:
          type: string
          default: 2.0.0
          enum:
          - 2.0.0
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReorderStagesRequest'
        required: true
      responses:
        '200':
          description: Stages reordered; returns the new order.
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/StageResponse'
        '400':
          description: Reorder list does not match the org's stages exactly
        '429':
          description: Too many requests - the rate limit for this endpoint has been exceeded. Use the Retry-After header to determine when to retry.
          headers:
            Retry-After:
              description: Number of seconds to wait before retrying the request.
              schema:
                type: integer
                format: int32
                example: 1
      security:
      - bearer-key: []
  /api/stages:
    get:
      tags:
      - Stages
      summary: List stages (ordered, with cap meta)
      description: '


        **Rate Limit:** `list-stages` (100 req / 1s)'
      operationId: list_4
      parameters:
      - name: X-API-Version
        in: header
        schema:
          type: string
          default: 2.0.0
          enum:
          - 2.0.0
      responses:
        '200':
          description: Stages listed.
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/StageListResponse'
        '401':
          description: Bearer token missing / invalid
        '429':
          description: Too many requests - the rate limit for this endpoint has been exceeded. Use the Retry-After header to determine when to retry.
          headers:
            Retry-After:
              description: Number of seconds to wait before retrying the request.
              schema:
                type: integer
                format: int32
                example: 1
      security:
      - bearer-key: []
components:
  schemas:
    StageListResponse:
      type: object
      properties:
        stages:
          type: array
          items:
            $ref: '#/components/schemas/StageResponse'
        meta:
          $ref: '#/components/schemas/Meta'
    StageResponse:
      type: object
      properties:
        publicId:
          type: string
          format: uuid
        name:
          type: string
        colour:
          type: string
        enabled:
          type: boolean
        ordinal:
          type: integer
          format: int32
        createdAt:
          type: string
          format: date-time
        createdBy:
          type: string
          format: uuid
        updatedAt:
          type: string
          format: date-time
        updatedBy:
          type: string
          format: uuid
    ReorderStagesRequest:
      type: object
      properties:
        stageIds:
          type: array
          items:
            type: string
            format: uuid
          minItems: 1
      required:
      - stageIds
    UpdateStageRequest:
      type: object
      properties:
        name:
          type: string
          maxLength: 128
          minLength: 0
        colour:
          type: string
          minLength: 1
          pattern: ^#[0-9A-Fa-f]{6}$
        enabled:
          type: boolean
      required:
      - colour
      - enabled
      - name
    Meta:
      type: object
      properties:
        maxPerOrg:
          type: integer
          format: int32
  securitySchemes:
    bearer-key:
      type: http
      scheme: bearer
      bearerFormat: JWT