Apptio Budgets API

IT budget planning and tracking

Operations 1

GET /budgets Apptio - List Budgets #

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/apptio-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

apptio-budgets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apptio Technology Business Management Budgets API
  description: API for the Apptio technology business management platform, providing programmatic access to cost allocations, IT financial data, budgets, and technology investment analytics for IT finance and planning teams.
  version: 1.0.0
  contact:
    name: Apptio Developer
    url: https://developer.apptio.com
  license:
    name: Proprietary
servers:
- url: https://api.apptio.com/v1
  description: Apptio TBM API
security:
- bearerAuth: []
tags:
- name: Budgets
  description: IT budget planning and tracking
paths:
  /budgets:
    get:
      operationId: listBudgets
      summary: Apptio - List Budgets
      description: Returns a list of IT budget plans and their current spending status
      tags:
      - Budgets
      parameters:
      - name: fiscalYear
        in: query
        description: Filter by fiscal year
        schema:
          type: integer
      responses:
        '200':
          description: A list of budgets
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Budget'
              examples:
                ListBudgetsExample:
                  x-microcks-default: true
                  summary: Example budgets list
                  value:
                    data:
                    - budgetId: BUD-2026-ENG
                      name: Engineering IT Budget 2026
                      fiscalYear: 2026
                      totalBudget: 2000000.0
                      spentAmount: 375000.0
                      currency: USD
        '401':
          description: Unauthorized - invalid or missing authentication token
components:
  schemas:
    Budget:
      title: Budget
      description: An IT budget plan with spending tracking
      type: object
      properties:
        budgetId:
          type: string
          description: Unique budget identifier
        name:
          type: string
          description: Budget name
        fiscalYear:
          type: integer
          description: Fiscal year for the budget
        totalBudget:
          type: number
          description: Total budget amount
        spentAmount:
          type: number
          description: Amount spent to date
        currency:
          type: string
          description: Currency code
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT