> ## Documentation Index
> Fetch the complete documentation index at: https://docs.equated.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Add a manual transaction to a bank-feed account

> Adds a manually entered transaction to a connected account, the repair path when the feed is missing activity the bank statement shows, so a reconciliation can tie out. Signed with the feed convention: positive = money out of the account, negative = money in. It starts UNSTAGED; categorize and confirm it like any synced transaction.



## OpenAPI

````yaml /openapi.json post /api/transactions
openapi: 3.1.0
info:
  title: Equated API
  version: 1.0.0
  description: >-
    Agent-facing accounting API. Authenticate with a bearer token issued from
    Settings → API Tokens, or via the in-app session cookie when called from the
    web client.
servers:
  - url: https://app.equated.co
    description: API server
security: []
paths:
  /api/transactions:
    post:
      tags:
        - Transactions
      summary: Add a manual transaction to a bank-feed account
      description: >-
        Adds a manually entered transaction to a connected account, the repair
        path when the feed is missing activity the bank statement shows, so a
        reconciliation can tie out. Signed with the feed convention: positive =
        money out of the account, negative = money in. It starts UNSTAGED;
        categorize and confirm it like any synced transaction.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                date:
                  type: string
                  pattern: ^\d{4}-\d{2}-\d{2}$
                amount:
                  type: number
                  minimum: -10000000000000
                  exclusiveMinimum: true
                  maximum: 10000000000000
                  exclusiveMaximum: true
                  description: >-
                    Signed, feed convention: positive = money out of the
                    account, negative = money in.
                name:
                  type: string
                  minLength: 1
                  maxLength: 500
                isoCurrencyCode:
                  type: string
                  pattern: ^[A-Za-z]{3}$
                financialAccountId:
                  type: integer
                  minimum: 0
                  exclusiveMinimum: true
              required:
                - date
                - amount
                - name
                - financialAccountId
      responses:
        '201':
          description: Created transaction
          content:
            application/json:
              schema:
                nullable: true
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````