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

# Get all current terms and conditions

> Retrieve all latest terms and conditions signings are required for a specific country




## OpenAPI

````yaml /spec.yaml get /terms-and-conditions
openapi: 3.1.0
info:
  description: The Stablecoin Payment Network
  title: Iron API - Sandbox
  version: 1.0-16670
servers:
  - url: https://api.sandbox.iron.xyz/api
security: []
tags:
  - description: >-
      Wallet and bank account registration


      Every wallet address that interacts with Iron must be registered (linked)
      to a customer **before** it can be used in any flow — onramp, offramp, or
      swap. This is a regulatory requirement under the **Travel Rule**, which
      obliges Virtual Asset Service Providers to exchange originator and
      beneficiary information for crypto transfers.


      Iron supports two wallet types:


      - **Self-hosted wallets** — the customer controls the private key.
      Registration requires a signed proof-of-ownership message.

      - **Hosted wallets** — the wallet is custodied by another VASP (e.g.
      Coinbase, Kraken). Registration requires the VASP's DID so Iron can
      exchange travel-rule data with the custodian.


      Similarly, fiat bank accounts must be registered before they can receive
      offramp payouts.
    name: Addresses
  - description: Operations on Autoramp
    name: Autoramp
  - description: Operations on Chronicle collateral
    name: ChronicleCollateral
  - description: Operations on Currencies
    name: Currencies
  - description: Operations on Customers
    name: Customer
  - description: Operations on Exchange Rate
    name: ExchangeRate
  - description: Operations on Fee Profiles
    name: FeeProfiles
  - description: Operations for Sandbox Testing
    name: Sandbox
  - description: Operations on SSE
    name: Sse
  - description: Operations on Terms and Conditions
    name: TermsAndConditions
  - description: Operations on Webhooks
    name: Webhooks
paths:
  /terms-and-conditions:
    get:
      tags:
        - TermsAndConditions
      summary: Get all current terms and conditions
      description: >
        Retrieve all latest terms and conditions signings are required for a
        specific country
      operationId: getAllCurrentTermsAndConditions
      parameters:
        - deprecated: false
          explode: true
          in: query
          name: country
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json; charset=utf-8:
              schema:
                items:
                  $ref: '#/components/schemas/TermsAndConditionsLink'
                type: array
          description: ''
        '400':
          content:
            application/json; charset=utf-8:
              schema:
                type: string
          description: ''
        '401':
          content:
            application/json; charset=utf-8:
              schema:
                type: string
          description: ''
        '404':
          content:
            application/json; charset=utf-8:
              schema:
                type: string
          description: ''
        '500':
          content:
            application/json; charset=utf-8:
              schema:
                type: string
          description: ''
      security:
        - ApiKeyAuth: []
components:
  schemas:
    TermsAndConditionsLink:
      description: A terms and conditions link
      example:
        display_name: Terms and Conditions
        id: 019f4c6d-66a5-78e2-ad9d-cdd4e1a91d74
        url: https://www.google.com/terms-and-conditions
      properties:
        display_name:
          description: the display name of the terms and conditions
          type: string
        id:
          description: The unique identifier for the terms and conditions url
          format: uuid
          type: string
        url:
          description: The URL of the terms and conditions
          type: string
      required:
        - id
        - url
        - display_name
      title: TermsAndConditionsLink
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: API Key
      in: header
      name: X-API-Key
      type: apiKey

````