PixieBrix Tours API

The tours API from PixieBrix — 3 operation(s) for tours.

Operations 3

GET /api/tours/ #
POST /api/tours/{tour_pk}/runs/ #
PATCH /api/tours/{tour_pk}/runs/{id}/ #

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/pixiebrix-tours-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

pixiebrix-tours-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PixieBrix Tours API
  version: 1.0.0
  description: PixieBrix admin and package registry API
  contact:
    name: PixieBrix Support
    email: support@pixiebrix.com
servers:
- url: https://app.pixiebrix.com
tags:
- name: tours
paths:
  /api/tours/:
    get:
      operationId: listTours
      description: Return the guided tours available to the current user across their organizations, each with its mod, target platforms, and the user's most recent run.
      parameters: []
      responses:
        '200':
          content:
            application/json; version=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Tour'
            application/vnd.pixiebrix.api+json; version=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Tour'
          description: ''
      tags:
      - tours
  /api/tours/{tour_pk}/runs/:
    post:
      operationId: createTourRun
      description: Start a new run of the specified tour for the current user, marking it as in progress.
      parameters:
      - name: tour_pk
        in: path
        required: true
        description: ''
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TourRun'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/TourRun'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/TourRun'
      responses:
        '201':
          content:
            application/json; version=1.0:
              schema:
                $ref: '#/components/schemas/TourRun'
            application/vnd.pixiebrix.api+json; version=1.0:
              schema:
                $ref: '#/components/schemas/TourRun'
          description: ''
      tags:
      - tours
  /api/tours/{tour_pk}/runs/{id}/:
    patch:
      operationId: partialUpdateTourRun
      description: Update the status of an existing run of the specified tour, for example to mark it completed or skipped.
      parameters:
      - name: tour_pk
        in: path
        required: true
        description: ''
        schema:
          type: string
      - name: id
        in: path
        required: true
        description: ''
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TourRun'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/TourRun'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/TourRun'
      responses:
        '200':
          content:
            application/json; version=1.0:
              schema:
                $ref: '#/components/schemas/TourRun'
            application/vnd.pixiebrix.api+json; version=1.0:
              schema:
                $ref: '#/components/schemas/TourRun'
          description: ''
      tags:
      - tours
components:
  schemas:
    TourRun:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        tour:
          type: object
          properties:
            id:
              type: string
              format: uuid
              readOnly: true
            name:
              type: string
              maxLength: 254
          required:
          - name
          readOnly: true
        status:
          enum:
          - IN_PROGRESS
          - COMPLETED
          - SKIPPED
          type: string
        tour_version:
          type: string
          description: Version of the tour that was run (provided by the frontend)
          pattern: ^(?<major>[0-9]+)\.(?<minor>[0-9]+)\.(?<patch>[0-9]+)(-.*)?$
          maxLength: 254
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
      required:
      - tour_version
    Tour:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        name:
          type: string
          maxLength: 254
        organization:
          type: object
          properties:
            id:
              type: string
              format: uuid
              readOnly: true
            name:
              type: string
              maxLength: 128
          required:
          - name
          readOnly: true
        platforms:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
                description: Unique platform identifier
                maxLength: 50
              display_name:
                type: string
                description: Display name
                maxLength: 255
            required:
            - name
            - display_name
          readOnly: true
        mod:
          type: string
          readOnly: true
        latest_run:
          type: object
          properties:
            id:
              type: string
              format: uuid
              readOnly: true
            tour:
              type: object
              properties:
                id:
                  type: string
                  format: uuid
                  readOnly: true
                name:
                  type: string
                  maxLength: 254
              required:
              - name
              readOnly: true
            status:
              enum:
              - IN_PROGRESS
              - COMPLETED
              - SKIPPED
              type: string
            tour_version:
              type: string
              description: Version of the tour that was run (provided by the frontend)
              pattern: ^(?<major>[0-9]+)\.(?<minor>[0-9]+)\.(?<patch>[0-9]+)(-.*)?$
              maxLength: 254
            created_at:
              type: string
              format: date-time
              readOnly: true
            updated_at:
              type: string
              format: date-time
              readOnly: true
          required:
          - tour_version
          readOnly: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
      required:
      - name