LianLian Global Transfer API

The Transfer API from LianLian Global — 2 operation(s) for transfer.

Operations 2

POST /v1/transfer 发起转账 #
GET /v1/transfer/{transaction_id} 查询转账详情 #

Specifications

Other Resources

🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/b2b-cross-border/ZG9jOjQ1Mg-open-api
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/B2B-inflow-payout/ZG9jOjQ1Mg-open-api
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/llp-api/4b402d5ab3edd-api-introduction-v1-2
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/cards-open-api/4b402d5ab3edd-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/connect/ydcoebflkrejd-connect-api
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/connect-ota/4b402d5ab3edd-open-api
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/lppe/72b66de24898e-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/outbound-payout/4b402d5ab3edd-api-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/outbound-payout-ka/4b402d5ab3edd-api-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/outbound-payout-service/4b402d5ab3edd-api-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/outbound-payout-verification/ztrytr7ruzey9-balance-api
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/llg-payments/4b402d5ab3edd-summary
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/global-payout/ZG9jOjQ1Mg-api-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/global-payout-fx/e13ca9b34d037-exchange
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/global-payout-tuition/4b402d5ab3edd-api-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/standard-remittance/4b402d5ab3edd-api-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/triplink/d04slm5ra253f-
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/e-wallet-openapi/72b66de24898e-introduction

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/lianlian-global-transfer-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

lianlian-global-transfer-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: 发起转账(/Charge) Transfer API
  version: '1.0'
  description: ''
servers:
- url: http://localhost:3000
tags:
- name: Transfer
paths:
  /v1/transfer:
    post:
      summary: 发起转账
      operationId: post-v1-transfer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Transfer'
        '400':
          description: Bad Request
      description: ''
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                transaction_id:
                  type: string
                  description: 交易单号
                  maxLength: 32
                transaction_type:
                  type: string
                  description: 交易类型
                  maxLength: 32
                  enum:
                  - TRANSFER
                  - CHARGE
                source_member_id:
                  type: string
                  description: 出账会员id
                  maxLength: 12
                target_member_id:
                  type: string
                  description: 入账会员id
                  maxLength: 32
                pricing_currency:
                  type: string
                  description: '定价币种,3位,参考:

                    https://www.iso.org/iso-4217-currency-codes.html

                    '
                source_currency:
                  type: string
                  description: '出账币种,3位,参考:

                    https://www.iso.org/iso-4217-currency-codes.html'
                source_amount:
                  type: string
                  description: 出账金额,如果pricing_currency= source_currency则必填
                  maxLength: 16
                target_currency:
                  type: string
                  description: '入账币种,3位,参考:

                    https://www.iso.org/iso-4217-currency-codes.html'
                target_amount:
                  type: string
                  description: 入账金额,如果pricing_currency= target_currency则必填
                  maxLength: 16
                commission_undertaker:
                  type: string
                  description: 手续费承担方
                  enum:
                  - PAYER
                  - PAYEE
                  maxLength: 6
                trade_file_id:
                  type: string
                  description: 贸易材料id
                  maxLength: 64
              required:
              - transaction_id
              - transaction_type
              - source_member_id
              - target_member_id
              - pricing_currency
              - source_currency
              - target_currency
              - commission_undertaker
      tags:
      - Transfer
  /v1/transfer/{transaction_id}:
    parameters:
    - schema:
        type: string
      name: transaction_id
      in: path
      required: true
    get:
      summary: 查询转账详情
      tags:
      - Transfer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Transfer'
        '400':
          description: Bad Request
      operationId: get-v1-transfer-transaction_id
      parameters: []
components:
  schemas:
    Transfer:
      title: Transfer
      x-stoplight:
        id: ig0lnssu0b9p1
      type: object
      description: 转账
      properties:
        transaction_id:
          type: string
          description: 交易单号
          maxLength: 32
        transaction_type:
          type: string
          description: 交易类型
          enum:
          - TRANSFER
          - CHARGE
          maxLength: 12
        source_member_id:
          type: string
          description: 出账会员id
          maxLength: 32
        target_member_id:
          type: string
          description: 入账会员id
          maxLength: 32
        pricing_currency:
          type: string
          description: 定价币种,3位,参考https://www.iso.org/iso-4217-currency-codes.html
        source_currency:
          type: string
          description: 出账币种,3位,参考https://www.iso.org/iso-4217-currency-codes.html
        source_amount:
          type: string
          description: 出账金额
          maxLength: 16
        target_currency:
          type: string
          description: 入账币种,3位,参考https://www.iso.org/iso-4217-currency-codes.html
        target_amount:
          type: string
          description: 入账金额
          maxLength: 16
        commission_undertaker:
          type: string
          description: 手续费承担方
          maxLength: 6
        trade_file_id:
          type: string
          description: 贸易材料id
          maxLength: 64
        status:
          type: string
          description: 状态
          maxLength: 16
        failed_reason:
          type: string
          description: 失败原因
          maxLength: 128
        create_time:
          type: string
          description: 创建时间,10位 秒级时间戳
        modify_time:
          type: string
          description: 修改时间,10位 秒级时间戳
x-stoplight:
  id: 1vtntu3kknb43