Rainforest QA on_premise_crowd API

Operations about on_premise_crowds

Operations 3

GET /1/on_premise_crowd List On-Prem Crowd testers #
POST /1/on_premise_crowd Create an On-Prem Crowd tester #
DELETE /1/on_premise_crowd/{worker_id} Delete an On-Prem Crowd tester #

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-on-premise-crowd-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-on-premise-crowd-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rainforest callback On Premise Crowd 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: on_premise_crowd
  description: Operations about on_premise_crowds
paths:
  /1/on_premise_crowd:
    get:
      summary: List On-Prem Crowd testers
      description: List On-Prem Crowd testers
      responses:
        '200':
          description: Retrieved On-Prem crowd testers
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Worker'
      tags:
      - on_premise_crowd
      operationId: get-on_premise_crowd_testers
      x-rdme-order: 1
    post:
      summary: Create an On-Prem Crowd tester
      description: Create an On-Prem Crowd tester
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/post-on_premise_crowd_testers'
        required: true
      responses:
        '201':
          description: Created On-Prem Crowd tester
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Worker'
        '400':
          description: Could not create On-Prem Crowd tester
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      tags:
      - on_premise_crowd
      operationId: post-on_premise_crowd_testers
      x-rdme-order: 2
  /1/on_premise_crowd/{worker_id}:
    delete:
      summary: Delete an On-Prem Crowd tester
      description: Delete an On-Prem Crowd tester
      parameters:
      - in: path
        name: worker_id
        description: A worker ID
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Deleted On-Prem Crowd tester
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Worker'
        '404':
          description: On-Prem Crowd tester not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      tags:
      - on_premise_crowd
      operationId: delete-on_premise_crowd_tester
      x-rdme-order: 10
components:
  schemas:
    Worker:
      type: object
      properties:
        id:
          type: integer
          format: int32
        created_at:
          type: string
          format: date-time
        uuid:
          type: string
          format: uuid
        name:
          type: string
        email:
          type: string
          format: email
        pic:
          type: string
          format: url
        profile_url:
          type: string
          format: url
      description: Worker model
    Error:
      type: object
      properties:
        error:
          type: string
          description: An error message describing what went wrong
      required:
      - error
      description: Error model
    post-on_premise_crowd_testers:
      type: object
      properties:
        email:
          type: string
          format: email
          description: Email of the tester
        name:
          type: string
          description: Name of the tester
      required:
      - email
      - name
      description: Create an On-Prem Crowd tester
  securitySchemes:
    api_key:
      type: apiKey
      name: CLIENT_TOKEN
      in: header