Brushfire Hooks API

The Hooks API from Brushfire — 7 operation(s) for hooks.

Operations 7

GET /hooks/list For 3rd party and custom integrations to list hooks subscribed by appKey
GET /hooks/ping For 3rd party and custom integrations to test connectivity after authentication
GET /hooks/poll For 3rd party and custom integrations to view shape for `data` property of POST from Brushfire
GET /hooks/sample For 3rd party and custom integrations to view shape for `data` property of POST from Brushfire
POST /hooks/subscribe For 3rd party and custom integrations to subscribe to our notifications
POST /hooks/unsubscribe For 3rd party and custom integrations to unsubscribe from our notifications
PUT /hooks/update For 3rd party and custom integrations to update objects on existing subscriptions

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/brushfire-hooks-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

brushfire-hooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: 'Brushfire API: Version 2025-07-22 AccessCodes Hooks API'
  version: '2025-07-22'
  description: 'The Brushfire REST API provides programmatic access to the Brushfire event ticketing and registration platform. It covers events, ticket types, sections and seats, attendees, orders, the shopping cart and checkout flow, groups, sessions and check-in, promotions and access codes, payment profiles, and webhooks (Hooks). Authenticate by sending your App Key (requested at https://developer.brushfire.com/key) in the Authorization header. The API is date-versioned: send the desired version in the api-version request header (for example, 2025-07-22). This document is the live specification published at api.brushfire.com/swagger.'
  contact:
    name: Brushfire Developers
    url: https://developer.brushfire.com
servers:
- url: https://api.brushfire.com
  description: Brushfire API (date-versioned via the api-version header)
tags:
- name: Hooks
paths:
  /hooks/list:
    get:
      tags:
      - Hooks
      summary: For 3rd party and custom integrations to list hooks subscribed by appKey
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HookSubscribeOutput'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HookSubscribeOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /hooks/ping:
    get:
      tags:
      - Hooks
      summary: For 3rd party and custom integrations to test connectivity after authentication
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items: {}
            text/json:
              schema:
                type: array
                items: {}
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /hooks/poll:
    get:
      tags:
      - Hooks
      summary: For 3rd party and custom integrations to view shape for `data` property of POST from Brushfire
      parameters:
      - name: type
        in: query
        description: ''
        schema:
          $ref: '#/components/schemas/WebhookType'
      - name: eventId
        in: query
        description: ''
        schema:
          type: string
      responses:
        '200':
          description: OK
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /hooks/sample:
    get:
      tags:
      - Hooks
      summary: For 3rd party and custom integrations to view shape for `data` property of POST from Brushfire
      parameters:
      - name: type
        in: query
        description: ''
        schema:
          $ref: '#/components/schemas/WebhookType'
      - name: eventId
        in: query
        description: ''
        schema:
          type: string
      responses:
        '200':
          description: OK
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /hooks/subscribe:
    post:
      tags:
      - Hooks
      summary: For 3rd party and custom integrations to subscribe to our notifications
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HookSubscribeInput'
          text/json:
            schema:
              $ref: '#/components/schemas/HookSubscribeInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/HookSubscribeInput'
      responses:
        '200':
          description: OK
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /hooks/unsubscribe:
    post:
      tags:
      - Hooks
      summary: For 3rd party and custom integrations to unsubscribe from our notifications
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HookUnsubscribeInput'
          text/json:
            schema:
              $ref: '#/components/schemas/HookUnsubscribeInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/HookUnsubscribeInput'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: boolean
            text/json:
              schema:
                type: boolean
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /hooks/update:
    put:
      tags:
      - Hooks
      summary: For 3rd party and custom integrations to update objects on existing subscriptions
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HookUpdateInput'
          text/json:
            schema:
              $ref: '#/components/schemas/HookUpdateInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/HookUpdateInput'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HookSubscribeOutput'
            text/json:
              schema:
                $ref: '#/components/schemas/HookSubscribeOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
components:
  schemas:
    HookUpdateInput:
      required:
      - Url
      type: object
      properties:
        Url:
          minLength: 1
          type: string
        Objects:
          type:
          - array
          - 'null'
          items:
            type: integer
            format: int64
          description: This can be Event Numbers, Account Numbers, Client Numbers, etc.
      additionalProperties: false
    WebhookType:
      enum:
      - Attendee_Created
      - Attendee_Updated
      - Attendee_Cancelled
      - Order_Completed
      - Event_Created
      - Group_Updated
      - Group_Created
      - Group_Deleted
      - Zapier_Post
      - Event_Updated
      - Order_Updated
      - Client_Created
      - Client_Activated
      - Client_Deactivated
      - Email_Unsubscribe
      - Email_Resubscribe
      type: string
    ApiModelError:
      type: object
      properties:
        Errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/StringStringKeyValuePair'
        Message:
          type:
          - string
          - 'null'
        Data: {}
        StackTrace:
          type:
          - string
          - 'null'
      additionalProperties: false
    StringStringKeyValuePair:
      type: object
      properties:
        Key:
          type:
          - string
          - 'null'
        Value:
          type:
          - string
          - 'null'
      additionalProperties: false
    HookSubscribeInput:
      required:
      - Type
      - Url
      type: object
      properties:
        Url:
          minLength: 1
          pattern: ^(?!.*(localhost|127\.0\.0\.1|\.local\b)).*$
          type: string
        Type:
          $ref: '#/components/schemas/WebhookType'
        Objects:
          type:
          - array
          - 'null'
          items:
            type: integer
            format: int64
          description: This can be Event Numbers, Account Numbers, Client Numbers, etc.
      additionalProperties: false
    HookSubscribeOutput:
      type: object
      properties:
        Id:
          type: string
          format: uuid
        Url:
          type:
          - string
          - 'null'
        Type:
          $ref: '#/components/schemas/WebhookType'
        Objects:
          type:
          - array
          - 'null'
          items:
            type: integer
            format: int64
      additionalProperties: false
    HookUnsubscribeInput:
      required:
      - Url
      type: object
      properties:
        Url:
          minLength: 1
          type: string
      additionalProperties: false
  securitySchemes:
    apiKey:
      type: apiKey
      description: The App Key you received from https://developer.brushfire.com/key
      name: Authorization
      in: header