Coperniq workflows API

The workflows API from Coperniq — 2 operation(s) for workflows.

Operations 2

GET /workflows List Workflows #
GET /workflows/{workflowId} Get Workflow #

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/coperniq-workflows-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

coperniq-workflows-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Key accounts Workflows API
  version: 1.0.0
servers:
- url: https://api.coperniq.io/v1
  description: Production server
tags:
- name: workflows
paths:
  /workflows:
    get:
      operationId: list-workflows
      summary: List Workflows
      description: 'Retrieve a paginated list of workflows.


        Supports:

        - Pagination (`page_size`, `page`)

        - Sorting (`order_by`, default: asc)

        '
      tags:
      - workflows
      parameters:
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of workflows
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Workflow'
  /workflows/{workflowId}:
    get:
      operationId: get-workflow
      summary: Get Workflow
      description: Retrieve details of a specific workflow
      tags:
      - workflows
      parameters:
      - name: workflowId
        in: path
        description: Workflow identifier
        required: true
        schema:
          type: integer
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Workflow details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Workflow'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetWorkflowRequestUnauthorizedError'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetWorkflowRequestNotFoundError'
components:
  schemas:
    WorkflowCreatedBy:
      type: object
      properties:
        id:
          type: integer
          description: User identifier
        firstName:
          type: string
          description: User first name
        lastName:
          type: string
          description: User last name
        avatarUrl:
          type:
          - string
          - 'null'
          description: URL to user avatar image
      title: WorkflowCreatedBy
    Workflow:
      type: object
      properties:
        id:
          type: integer
          description: Workflow identifier
        name:
          type: string
          description: Workflow name
        description:
          type:
          - string
          - 'null'
          description: Workflow description
        type:
          $ref: '#/components/schemas/WorkflowType'
          description: Workflow type
        createdAt:
          type: string
          format: date-time
          description: Creation timestamp
        updatedAt:
          type: string
          format: date-time
          description: Last update timestamp
        createdBy:
          oneOf:
          - $ref: '#/components/schemas/WorkflowCreatedBy'
          - type: 'null'
        phases:
          type: array
          items:
            $ref: '#/components/schemas/WorkflowPhasesItems'
      title: Workflow
    WorkflowsWorkflowIdGetResponsesContentApplicationJsonSchemaCode:
      type: string
      enum:
      - NOT_FOUND
      title: WorkflowsWorkflowIdGetResponsesContentApplicationJsonSchemaCode
    GetWorkflowRequestUnauthorizedError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/WorkflowsWorkflowIdGetResponsesContentApplicationJsonSchemaCode'
      title: GetWorkflowRequestUnauthorizedError
    WorkflowPhasesItems:
      type: object
      properties:
        id:
          type: integer
          description: Phase identifier
        name:
          type: string
          description: Phase name
        type:
          type: string
          description: Phase type
        description:
          type:
          - string
          - 'null'
          description: Phase description
        redSla:
          type:
          - integer
          - 'null'
          description: Red SLA (Service Level Agreement) in days
        yellowSla:
          type:
          - integer
          - 'null'
          description: Yellow SLA (Service Level Agreement) in days
      title: WorkflowPhasesItems
    GetWorkflowRequestNotFoundError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/WorkflowsWorkflowIdGetResponsesContentApplicationJsonSchemaCode'
      title: GetWorkflowRequestNotFoundError
    WorkflowType:
      type: string
      enum:
      - PROJECT
      description: Workflow type
      title: WorkflowType
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic