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

# Retrieve settlement instructions



## OpenAPI

````yaml /openapi.json get /api/v1/business/transactions/{id}/settlement
openapi: 3.1.0
info:
  title: NorthFond Business API
  version: 1.0.0
  summary: Provider-neutral stablecoin on-ramp and off-ramp infrastructure.
  description: >-
    NorthFond lets businesses provision or register EVM wallets, store
    beneficiaries, request quotes, initiate off-ramps, confirm settlement, and
    track transactions. Sandbox and live credentials use the same API contract
    and remain isolated.
  contact:
    name: NorthFond API Support
servers:
  - url: https://payment.gideondevrel.xyz
    description: Configured NorthFond API environment
security:
  - ApiKeyAuth: []
tags:
  - name: Account
    description: Authenticated business context.
  - name: Customers
    description: Business-owned customers and managed wallets.
  - name: Beneficiaries
    description: Encrypted, reusable payout destinations.
  - name: Wallets
    description: Managed and external EVM funding wallets.
  - name: Quotes
    description: Provider-neutral off-ramp prices.
  - name: Off-ramps
    description: Stablecoin-to-fiat payout initiation.
  - name: On-ramps
    description: Fiat-to-stablecoin deposit initiation.
  - name: Transactions
    description: Payment status, events, and settlement.
externalDocs:
  description: NorthFond developer documentation
  url: /docs
paths:
  /api/v1/business/transactions/{id}/settlement:
    get:
      tags:
        - Transactions
      summary: Retrieve settlement instructions
      operationId: getTransactionSettlement
      parameters:
        - name: id
          in: path
          required: true
          description: NorthFond resource identifier.
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Settlement returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Settlement'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '422':
          $ref: '#/components/responses/UnprocessableEntity'
        '429':
          $ref: '#/components/responses/RateLimited'
        '503':
          $ref: '#/components/responses/Unavailable'
components:
  schemas:
    Settlement:
      type: object
      required:
        - id
        - transaction_id
        - status
        - chain
        - asset
        - token_address
        - from_address
        - to_address
        - amount
        - confirmations
        - required_confirmations
        - expires_at
      properties:
        id:
          type: string
          format: uuid
        transaction_id:
          type: string
          format: uuid
        status:
          type: string
          enum:
            - awaiting_transfer
            - detected
            - confirmed
        chain:
          $ref: '#/components/schemas/EvmChain'
        asset:
          const: USDC
        token_address:
          type: string
        from_address:
          type: string
        to_address:
          type: string
        amount:
          type: string
        fee_address:
          type:
            - string
            - 'null'
        fee_amount:
          type: string
        total_required:
          type: string
        execution:
          type: object
          description: >-
            Use direct_transfer when the fee is zero. For fee_splitter, approve
            the exact raw amount and submit the returned transaction.
        transaction_hash:
          type:
            - string
            - 'null'
        confirmations:
          type: integer
        required_confirmations:
          type: integer
        expires_at:
          type: string
          format: date-time
        detected_at:
          type:
            - string
            - 'null'
          format: date-time
        confirmed_at:
          type:
            - string
            - 'null'
          format: date-time
    EvmChain:
      type: string
      enum:
        - base
        - polygon
        - arbitrum
        - optimism
        - avalanche
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
            - requestId
          properties:
            code:
              type: string
              example: invalid_request
            message:
              type: string
            requestId:
              type: string
              format: uuid
            details: {}
  responses:
    BadRequest:
      description: The request is invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: The API key is missing or invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Forbidden:
      description: The API key lacks the required scope or the source IP is not allowed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: The tenant-scoped resource was not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Conflict:
      description: The request conflicts with current resource or idempotency state.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    UnprocessableEntity:
      description: The request is understood but cannot be processed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    RateLimited:
      description: The credential rate limit was exceeded.
      headers:
        Retry-After:
          schema:
            type: integer
          description: Seconds before retrying.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unavailable:
      description: A required service or environment configuration is unavailable.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: nf_test_… or nf_live_…
      description: A secret NorthFond business API key. Keep it on your server.

````