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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/pinkfish-runs-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
openapi: 3.2.0
info:
title: AI Workflow Runs API
description: API for triggering and managing AI-powered Pinkfish workflows. Trigger endpoints execute published Pinkfish workflows (automations) synchronously or asynchronously, and polling endpoints retrieve run status and results.
version: 1.0.0
contact:
name: Pinkfish
url: https://docs.pinkfish.ai/api-reference/introduction
servers:
- url: https://triggers.app.pinkfish.ai
security:
- apiKeyAuth: []
tags:
- name: Runs
description: Poll run status and retrieve results
paths:
/ext/webhook/{apiKey}/runs/{automationId}/{runId}/status:
get:
tags:
- Runs
operationId: getRunStatus
summary: Get workflow run status
description: Returns the current status of a workflow run. Poll every 2-5 seconds until a terminal status (COMPLETE, FAILED, TIMEOUT). PAUSED is not terminal — keep polling. Modeled from the documented Async Polling guide.
parameters:
- name: apiKey
in: path
required: true
schema:
type: string
- name: automationId
in: path
required: true
schema:
type: string
- name: runId
in: path
required: true
schema:
type: string
responses:
'200':
description: Current run status.
content:
application/json:
schema:
$ref: '#/components/schemas/RunStatus'
/ext/webhook/{apiKey}/runs/{automationId}/{runId}/results:
get:
tags:
- Runs
operationId: getRunResults
summary: Get workflow run results
description: Retrieves the full results of a completed workflow run, including per-step results and signed resultUrls. Modeled from the documented Async Polling guide.
parameters:
- name: apiKey
in: path
required: true
schema:
type: string
- name: automationId
in: path
required: true
schema:
type: string
- name: runId
in: path
required: true
schema:
type: string
responses:
'200':
description: Full workflow run results.
content:
application/json:
schema:
$ref: '#/components/schemas/RunResult'
components:
schemas:
RunResult:
type:
- object
- 'null'
properties:
automationId:
type: string
automationVersion:
type: integer
automationName:
type: string
id:
type: string
description: The run ID
type:
type: string
results:
type: array
items:
type: object
properties:
stepIndex:
type: integer
stepVersion:
type: integer
result:
type: object
resultUrls:
type: object
exitCode:
type: integer
duration:
type: integer
started:
type: string
format: date-time
status:
type: string
RunStatus:
type: object
properties:
automationId:
type: string
runId:
type: string
status:
type: string
enum:
- PENDING
- RUNNING
- PAUSED
- COMPLETE
- FAILED
- TIMEOUT
stepStatus:
type: object
additionalProperties:
type: string
stepInfo:
type: object
additionalProperties:
type: object
securitySchemes:
apiKeyAuth:
type: apiKey
in: header
name: X-API-KEY