Unstoppable Finance (Iron) TermsAndConditions API

Operations on Terms and Conditions

Operations 1

GET /terms-and-conditions Get all current terms and conditions #

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/unstoppable-finance-termsandconditions-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

unstoppable-finance-termsandconditions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: The Stablecoin Payment Network
  title: Iron API - Sandbox Terms And Conditions API
  version: 1.0-16988
servers:
- url: https://api.sandbox.iron.xyz/api
tags:
- description: Operations on Terms and Conditions
  name: TermsAndConditions
paths:
  /terms-and-conditions:
    get:
      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
      - $ref: '#/components/parameters/XApiVersion'
      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: []
      summary: Get all current terms and conditions
      tags:
      - TermsAndConditions
components:
  schemas:
    TermsAndConditionsLink:
      description: A terms and conditions link
      example:
        display_name: Terms and Conditions
        id: 019f846a-8d21-7813-8e60-8014904dbceb
        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
  parameters:
    XApiVersion:
      description: 'Selects the API version for this request, as an ISO date (`YYYY-MM-DD`). Omit to use the default version (`2025-03-13`). Supported versions: 2025-03-13, 2026-07-01.'
      in: header
      name: X-API-Version
      required: false
      schema:
        type: string
  securitySchemes:
    ApiKeyAuth:
      description: API Key
      in: header
      name: X-API-Key
      type: apiKey