Brex Budgets API

The Budgets API from Brex — 6 operation(s) for budgets.

Operations 10

GET /v1/budgets List Spend Limits (v1) #
POST /v1/budgets Create a Spend Limit (v1) #
GET /v1/budgets/{id} Retrieve a Spend Limit by ID (v1) #
PUT /v1/budgets/{id} Update a Spend Limit (v1) #
POST /v1/budgets/{id}/archive Archive a Spend Limit (v1) #
GET /v2/budgets List Budgets (v2) #
POST /v2/budgets Create a Budget (v2) #
GET /v2/budgets/{id} Retrieve a Budget by ID (v2) #
PUT /v2/budgets/{id} Update a Budget (v2) #
POST /v2/budgets/{id}/archive Archive a Budget (v2) #

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/brex-budgets-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

brex-budgets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Brex Budget Programs Budgets API
  version: '1.0'
  description: Minimal OpenAPI 3.1 description of the Brex Budgets and Spend Limits API, derived from the public Brex developer documentation. Covers v1 and v2 budgets, spend limits, and budget programs resources.
  x-generated-from: https://developer.brex.com/openapi/budgets_api/
  x-generated-by: claude-crawl-2026-05-08
servers:
- url: https://platform.brexapis.com
  description: Production
security:
- bearerAuth: []
tags:
- name: Budgets
paths:
  /v1/budgets:
    get:
      tags:
      - Budgets
      summary: List Spend Limits (v1)
      operationId: listV1Budgets
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericListResponse'
    post:
      tags:
      - Budgets
      summary: Create a Spend Limit (v1)
      operationId: createV1Budget
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericObject'
      responses:
        '200':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericObject'
  /v1/budgets/{id}:
    parameters:
    - $ref: '#/components/parameters/IdParam'
    get:
      tags:
      - Budgets
      summary: Retrieve a Spend Limit by ID (v1)
      operationId: getV1Budget
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericObject'
    put:
      tags:
      - Budgets
      summary: Update a Spend Limit (v1)
      operationId: updateV1Budget
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericObject'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericObject'
  /v1/budgets/{id}/archive:
    parameters:
    - $ref: '#/components/parameters/IdParam'
    post:
      tags:
      - Budgets
      summary: Archive a Spend Limit (v1)
      operationId: archiveV1Budget
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericObject'
  /v2/budgets:
    get:
      tags:
      - Budgets
      summary: List Budgets (v2)
      operationId: listV2Budgets
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericListResponse'
    post:
      tags:
      - Budgets
      summary: Create a Budget (v2)
      operationId: createV2Budget
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericObject'
      responses:
        '200':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericObject'
  /v2/budgets/{id}:
    parameters:
    - $ref: '#/components/parameters/IdParam'
    get:
      tags:
      - Budgets
      summary: Retrieve a Budget by ID (v2)
      operationId: getV2Budget
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericObject'
    put:
      tags:
      - Budgets
      summary: Update a Budget (v2)
      operationId: updateV2Budget
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericObject'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericObject'
  /v2/budgets/{id}/archive:
    parameters:
    - $ref: '#/components/parameters/IdParam'
    post:
      tags:
      - Budgets
      summary: Archive a Budget (v2)
      operationId: archiveV2Budget
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericObject'
components:
  parameters:
    IdParam:
      name: id
      in: path
      required: true
      schema:
        type: string
  schemas:
    GenericListResponse:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/GenericObject'
        next_cursor:
          type: string
      additionalProperties: true
    GenericObject:
      type: object
      additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT