Brushfire Accounts API
The Accounts API from Brushfire — 3 operation(s) for accounts.
The Accounts API from Brushfire — 3 operation(s) for accounts.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/brushfire-accounts-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: 'Brushfire API: Version 2025-07-22 AccessCodes Accounts 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: Accounts
paths:
/accounts/{accountId}:
get:
tags:
- Accounts
summary: Retrieve information for a specific account
parameters:
- name: accountId
in: path
description: An Email, a GUID, an Access Key, or an integer that corresponds to a specific account
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/AccountSingleOutput'
text/json:
schema:
$ref: '#/components/schemas/AccountSingleOutput'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ApiModelError'
text/json:
schema:
$ref: '#/components/schemas/ApiModelError'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
text/json:
schema:
$ref: '#/components/schemas/ApiError'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
text/json:
schema:
$ref: '#/components/schemas/ApiError'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
text/json:
schema:
$ref: '#/components/schemas/ApiError'
security:
- apiKey: []
/accounts/auth:
post:
tags:
- Accounts
summary: Authenticate a user via email and password or social service to get Access Key
requestBody:
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/AccountAuthInput'
text/json:
schema:
$ref: '#/components/schemas/AccountAuthInput'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/AccountAuthInput'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/AccountAuthOutput'
text/json:
schema:
$ref: '#/components/schemas/AccountAuthOutput'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ApiModelError'
text/json:
schema:
$ref: '#/components/schemas/ApiModelError'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
text/json:
schema:
$ref: '#/components/schemas/ApiError'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
text/json:
schema:
$ref: '#/components/schemas/ApiError'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
text/json:
schema:
$ref: '#/components/schemas/ApiError'
security:
- apiKey: []
/accounts/helpdesk/{email}:
get:
tags:
- Accounts
summary: Retrieve an account that matches the provided email
parameters:
- name: email
in: path
description: An Email that corresponds to a specific account
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/AccountHelpdeskOutput'
text/json:
schema:
$ref: '#/components/schemas/AccountHelpdeskOutput'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ApiModelError'
text/json:
schema:
$ref: '#/components/schemas/ApiModelError'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
text/json:
schema:
$ref: '#/components/schemas/ApiError'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
text/json:
schema:
$ref: '#/components/schemas/ApiError'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/ApiError'
text/json:
schema:
$ref: '#/components/schemas/ApiError'
security:
- apiKey: []
components:
schemas:
AccountAuthInput:
required:
- Email
- Password
type: object
properties:
Email:
minLength: 1
type: string
Password:
maxLength: 64
minLength: 8
type: string
additionalProperties: false
ApiError:
type: object
properties:
Message:
type:
- string
- 'null'
Data: {}
StackTrace:
type:
- string
- 'null'
additionalProperties: false
AccountRoleOutput:
type: object
properties:
ClientId:
type: string
format: uuid
ClientKey:
type:
- string
- 'null'
ClientNumber:
type: integer
format: int64
ClientName:
type:
- string
- 'null'
ClientCity:
type:
- string
- 'null'
ClientRegion:
type:
- string
- 'null'
ClientCountry:
type:
- string
- 'null'
Level:
type:
- string
- 'null'
additionalProperties: false
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
AccountHelpdeskOutput:
type: object
properties:
Id:
type: string
format: uuid
AccountNumber:
type: integer
format: int64
Email:
type:
- string
- 'null'
FirstName:
type:
- string
- 'null'
LastName:
type:
- string
- 'null'
IsUser:
type: boolean
ClientRoles:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/AccountRoleOutput'
additionalProperties: false
AccountSingleOutput:
type: object
properties:
Id:
type: string
format: uuid
AccountNumber:
type: integer
format: int64
Email:
type:
- string
- 'null'
FirstName:
type:
- string
- 'null'
LastName:
type:
- string
- 'null'
Street1:
type:
- string
- 'null'
Street2:
type:
- string
- 'null'
City:
type:
- string
- 'null'
Region:
type:
- string
- 'null'
Country:
type:
- string
- 'null'
PostalCode:
type:
- string
- 'null'
Phone:
type:
- string
- 'null'
Address:
type:
- string
- 'null'
CreatedAt:
type: string
format: date-time
IsUser:
type: boolean
AvatarUrl:
type:
- string
- 'null'
IsBrushfireStaff:
type: boolean
additionalProperties: false
AccountAuthOutput:
type: object
properties:
Id:
type: string
format: uuid
FirstName:
type:
- string
- 'null'
LastName:
type:
- string
- 'null'
Email:
type:
- string
- 'null'
AccountNumber:
type: integer
format: int64
AccessKey:
type:
- string
- 'null'
IsUser:
type: boolean
AvatarUrl:
type:
- string
- 'null'
IsBrushfireStaff:
type: boolean
additionalProperties: false
securitySchemes:
apiKey:
type: apiKey
description: The App Key you received from https://developer.brushfire.com/key
name: Authorization
in: header