Rainforest QA callback API

Operations about callbacks

Operations 1

POST /1/callback/run/{run_id}/{callback_type}/{digest} Notify Rainforest when a run webhook callback is complete #

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/rainforest-qa-callback-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

rainforest-qa-callback-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rainforest Callback API
  description: Nearly all interactions done in Rainforest can be done via the API. Find your API Token (for the CLIENT_TOKEN header field) on the integration settings page (https://app.rainforestqa.com/settings/integrations).
  version: '1'
servers:
- url: https://app.rainforestqa.com/api
security:
- api_key: []
tags:
- name: callback
  description: Operations about callbacks
paths:
  /1/callback/run/{run_id}/{callback_type}/{digest}:
    post:
      summary: Notify Rainforest when a run webhook callback is complete
      description: 'Notify Rainforest when a `before_run` webhook callback is complete. See the [Using Webhooks article](https://help.rainforestqa.com/docs/using-webhooks#running-a-test-using-an-advanced-webhook) for more information.

        '
      parameters:
      - in: path
        name: run_id
        description: The ID of the Run you are sending a callback for
        required: true
        schema:
          type: string
      - in: path
        name: callback_type
        description: '`before_run` is currently the only type that is handled by this endpoint'
        required: true
        schema:
          type: string
          enum:
          - initializing_run
          - before_run
          - after_run
      - in: path
        name: digest
        description: MD5-HMAC Digest created with [Rainforest Auth](https://github.com/rainforestapp/auth)
        required: true
        schema:
          type: string
      security: []
      responses:
        '201':
          description: Callback successfully handled
        '400':
          description: Callback already processed; Invalid `callback_type`
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Invalid digest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      tags:
      - callback
      operationId: post-callback
      x-rdme-order: 1
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: An error message describing what went wrong
      required:
      - error
      description: Error model
  securitySchemes:
    api_key:
      type: apiKey
      name: CLIENT_TOKEN
      in: header