FreeAgent BankAccounts API

The BankAccounts API from FreeAgent — 2 operation(s) for bankaccounts.

Operations 5

GET /bank_accounts List bank accounts #
POST /bank_accounts Create bank account #
GET /bank_accounts/{id} Get bank account #
PUT /bank_accounts/{id} Update bank account #
DELETE /bank_accounts/{id} Delete bank account #

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/freeagent-bankaccounts-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

freeagent-bankaccounts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: FreeAgent Bank Accounts API
  description: 'FreeAgent is UK-focused cloud accounting software. The API is RESTful and

    exposes contacts, invoices, bank accounts, projects, expenses, bills,

    timeslips, tax timeline, and more. OAuth 2.0 (authorization code) is

    required for access. JSON and XML responses are supported.


    Sandbox base URL: https://api.sandbox.freeagent.com

    '
  version: '2'
  contact:
    name: FreeAgent API Support
    url: https://dev.freeagent.com/
servers:
- url: https://api.freeagent.com/v2
  description: Production
- url: https://api.sandbox.freeagent.com/v2
  description: Sandbox
security:
- oauth2: []
tags:
- name: BankAccounts
paths:
  /bank_accounts:
    get:
      summary: List bank accounts
      operationId: listBankAccounts
      tags:
      - BankAccounts
      parameters:
      - name: view
        in: query
        schema:
          type: string
          enum:
          - standard_bank_accounts
          - credit_card_accounts
          - paypal_accounts
      responses:
        '200':
          description: Bank accounts.
    post:
      summary: Create bank account
      operationId: createBankAccount
      tags:
      - BankAccounts
      responses:
        '201':
          description: Created.
  /bank_accounts/{id}:
    parameters:
    - $ref: '#/components/parameters/id'
    get:
      summary: Get bank account
      operationId: getBankAccount
      tags:
      - BankAccounts
      responses:
        '200':
          description: Bank account.
    put:
      summary: Update bank account
      operationId: updateBankAccount
      tags:
      - BankAccounts
      responses:
        '200':
          description: Updated.
    delete:
      summary: Delete bank account
      operationId: deleteBankAccount
      tags:
      - BankAccounts
      responses:
        '204':
          description: Deleted.
components:
  parameters:
    id:
      name: id
      in: path
      required: true
      schema:
        type: string
  securitySchemes:
    oauth2:
      type: oauth2
      description: 'OAuth 2.0 authorization code flow. Access tokens valid for ~1 hour;

        refresh tokens used to obtain new access tokens.

        '
      flows:
        authorizationCode:
          authorizationUrl: https://api.freeagent.com/v2/approve_app
          tokenUrl: https://api.freeagent.com/v2/token_endpoint
          refreshUrl: https://api.freeagent.com/v2/token_endpoint
          scopes: {}