Temenos Trade Finance API

Trade finance operations including letters of credit, guarantees, documentary collections, and trade document management.

Operations 2

GET /tradeFinance/lettersOfCredit List Letters Of Credit #
GET /tradeFinance/guarantees List Guarantees #

Documentation

Specifications

Other Resources

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/temenos-trade-finance-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

temenos-trade-finance-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Temenos Cloud Banking (CMB) Trade Finance API
  description: Country-specific commercial and cloud banking APIs delivering front-to-back services for accounts, deposits, lending, trade finance, and payments with pre-wired APIs and regional regulatory compliance for markets including Australia, Canada, Mexico, UK, US, and more. Provides pre-configured banking products and workflows adapted for local regulations.
  version: 1.0.0
  contact:
    name: Temenos Developer Support
    url: https://developer.temenos.com/
    email: api.support@temenos.com
  license:
    name: Temenos Terms of Service
    url: https://www.temenos.com/legal-information/website-terms-and-conditions/
  termsOfService: https://www.temenos.com/legal-information/website-terms-and-conditions/
servers:
- url: https://api.temenos.com/cmb/v1
  description: Temenos Cloud Banking API - Production
security:
- bearerAuth: []
tags:
- name: Trade Finance
  description: Trade finance operations including letters of credit, guarantees, documentary collections, and trade document management.
paths:
  /tradeFinance/lettersOfCredit:
    get:
      operationId: listLettersOfCredit
      summary: List Letters Of Credit
      description: Retrieve letters of credit including import and export LCs with their document status and amendment history.
      tags:
      - Trade Finance
      parameters:
      - $ref: '#/components/parameters/pageSize'
      - $ref: '#/components/parameters/pageStart'
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                type: object
                properties:
                  header:
                    $ref: '#/components/schemas/PaginationHeader'
                  body:
                    type: array
                    items:
                      $ref: '#/components/schemas/LetterOfCredit'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /tradeFinance/guarantees:
    get:
      operationId: listGuarantees
      summary: List Guarantees
      description: Retrieve bank guarantees and standby letters of credit with their terms, beneficiaries, and expiry dates.
      tags:
      - Trade Finance
      parameters:
      - $ref: '#/components/parameters/pageSize'
      - $ref: '#/components/parameters/pageStart'
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                type: object
                properties:
                  header:
                    $ref: '#/components/schemas/PaginationHeader'
                  body:
                    type: array
                    items:
                      $ref: '#/components/schemas/Guarantee'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    Error:
      type: object
      properties:
        errorCode:
          type: string
        errorMessage:
          type: string
    Guarantee:
      type: object
      description: Bank guarantee
      properties:
        guaranteeId:
          type: string
          description: Guarantee identifier
        guaranteeType:
          type: string
          description: Guarantee type
        applicant:
          type: string
          description: Applicant
        beneficiary:
          type: string
          description: Beneficiary
        amount:
          type: number
          format: double
          description: Guarantee amount
        currency:
          type: string
          description: Currency
        expiryDate:
          type: string
          format: date
          description: Expiry date
        status:
          type: string
          description: Guarantee status
    LetterOfCredit:
      type: object
      description: Letter of credit
      properties:
        lcId:
          type: string
          description: LC identifier
        lcType:
          type: string
          description: LC type
          enum:
          - IMPORT
          - EXPORT
          - STANDBY
        applicant:
          type: string
          description: Applicant name
        beneficiary:
          type: string
          description: Beneficiary name
        amount:
          type: number
          format: double
          description: LC amount
        currency:
          type: string
          description: Currency
        expiryDate:
          type: string
          format: date
          description: Expiry date
        status:
          type: string
          description: LC status
    PaginationHeader:
      type: object
      properties:
        page_size:
          type: integer
        page_start:
          type: integer
        total_size:
          type: integer
  responses:
    Unauthorized:
      description: Authentication required
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  parameters:
    pageStart:
      name: page_start
      in: query
      schema:
        type: integer
        minimum: 0
        default: 0
    pageSize:
      name: page_size
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 25
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
externalDocs:
  description: Temenos CMB API Documentation
  url: https://developer.temenos.com/cmb