LianLian Global Accounts API

The Accounts API from LianLian Global — 6 operation(s) for accounts.

Operations 6

POST /v1/accounts/apply 申请收款账户 #
GET /v1/accounts/{member_id} 会员账户信息查询 #
POST /accounts Create an account #
GET /accounts/detail Get account detail info #
POST /accounts/authorize Authorize an account #
POST /accounts/submit Submit account for activation #

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-accounts-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-accounts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Lianlian Global Accounts API
  version: '1.0'
  description: 'Operations tagged Accounts across 2 of this provider''s published API definitions: lianlian-global-connect-account-openapi.yml, lianlian-global-lppe-accounts-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: http://localhost:3000
- url: https://global-api.lianlian.com/api/v1
  description: ''
tags:
- name: Accounts
paths:
  /v1/accounts/apply:
    parameters: []
    post:
      summary: 申请收款账户
      operationId: post-account
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Account'
        '400':
          description: Missing Required Information
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                member_id:
                  type: string
                  description: 会员id
                  maxLength: 32
                currency_list:
                  type: array
                  description: 币种列表 例如:["USD","JPY"]
                  items:
                    type: string
                    maxLength: 128
              required:
              - member_id
              - currency_list
        description: ''
      description: 创建币种账户
      tags:
      - Accounts
    servers:
    - url: http://localhost:3000
  /v1/accounts/{member_id}:
    parameters:
    - schema:
        type: string
      name: member_id
      in: path
      required: true
    get:
      summary: 会员账户信息查询
      tags:
      - Accounts
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Account'
        '400':
          description: Bad Request
      operationId: get-v1-account-get_account_list
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                member_id:
                  type: string
                  description: 会员id
                  maxLength: 32
              required:
              - member_id
          application/xml:
            schema:
              type: object
              properties:
                member_id:
                  type: string
                  description: 会员id
                  maxLength: 32
                account_id:
                  type: string
                  description: 账户号,如果account_id和currency_list同时存在,以account_id为查询条件
                  maxLength: 32
                currency_list:
                  type: string
                  description: 币种列表 例如:["USD","JPY"]
                  maxLength: 128
              required:
              - member_id
        description: ''
      parameters: []
    servers:
    - url: http://localhost:3000
  /accounts:
    parameters: []
    post:
      summary: Create an account
      operationId: create-account
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: ../models/AccountResponse.yaml
          headers: {}
        '400':
          description: '**code**|**message**

            ---|---

            PARAM_ERROR|A parameter value is not valid or missing.

            MISSING_REQUIRED_PARAMETER| A required parameter in the request is missing.

            AUTH_CLIENT_NOT_EXIST| The configuration is incorrect. Please contact the account manager or online customer service.'
          content:
            application/json:
              schema:
                $ref: ../models/Error.yaml
      requestBody:
        content:
          application/json:
            schema:
              $ref: ../models/AccountRequest.yaml
        description: ''
      description: '为您的用户、商家、子公司、业务合作伙伴或客户创建一个新的LianLian Global帐户。

        - 业务字段相同时,支持幂等,返回当前account的最新状态'
      x-stoplight:
        id: soqetl7kkcqfp
      security:
      - 客户端凭据授权: []
      tags:
      - Accounts
    servers:
    - url: https://global-api.lianlian.com/api/v1
      description: ''
  /accounts/detail:
    parameters: []
    get:
      summary: Get account detail info
      tags:
      - Accounts
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: ../models/AccountResponse.yaml
        '400':
          description: '**code**|**message**

            ---|---

            PARAM_ERROR|A parameter value is not valid or missing.

            MISSING_REQUIRED_PARAMETER| A required parameter in the request is missing.'
          content:
            application/json:
              schema:
                $ref: ../models/Error.yaml
        '404':
          description: '**code**|**message**

            ---|---

            RESOURCE_NOT_FOUND|The specified resource does not exist.'
          content:
            application/json:
              schema:
                $ref: ../models/ErrorNoParam.yaml
      operationId: get-account
      x-stoplight:
        id: tx05pzu77zgse
      parameters: []
      security:
      - 授权码授权: []
    servers:
    - url: https://global-api.lianlian.com/api/v1
      description: ''
  /accounts/authorize:
    parameters: []
    post:
      summary: Authorize an account
      tags:
      - Accounts
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: ../models/AccountsAuthorizeResponse.yaml
        '400':
          description: '**code**|**message**

            ---|---

            PARAM_ERROR|A parameter value is not valid or missing.

            MISSING_REQUIRED_PARAMETER| A required parameter in the request is missing.'
          content:
            application/json:
              schema:
                $ref: ../models/Error.yaml
      operationId: accounts-authorize
      x-stoplight:
        id: p7flmwd5k7sij
      requestBody:
        content:
          application/json:
            schema:
              $ref: ../models/AccountsAuthorizeRequest.yaml
      security:
      - 授权码授权: []
        客户端凭据授权: []
      parameters:
      - schema:
          type: string
        in: header
        name: X-On-Behalf-Of-User-Id
        description: 需要申请授权的user_id
      description: '请求用户账户授权

        - 业务字段相同时,支持幂等,只会创建一条授权记录,每次调用授权码code会刷新'
    servers:
    - url: https://global-api.lianlian.com/api/v1
      description: ''
  /accounts/submit:
    parameters: []
    post:
      summary: Submit account for activation
      tags:
      - Accounts
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: ../models/KYCResponse.yaml
        '400':
          description: "code |message | param\n---------|----------|---------\n MISSING_REQUIRED_PARAMETER | A required parameter in the request is missing. |e.g: country_code\n PARAM_ERROR | A parameter value is not valid. |\n ACCOUNT_INFO_NOT_FOUND | Account information does not exist. |\n CLIENT_CONFIG_INVALID | The client is missing configuration. |\n KYC_STATUS_NOT_SUPPORT | KYC status does not support submission. |\n FILE_NOT_EXIST | The file does not exist. |\n LEGAL_TRUST_AUTH_INVALID | Verification failed for the legal representative's phone,full_name, and cert_no. |\n MISSING_LEGALPERSON | Legal Information in the request is missing. |\n LEGAL_INFORMATION_ONLY | Corporate information cannot be multiple. |\n CAPTCHA_NOT_SEND | Please obtain the verification code first. |\n CAPTCHA_NOT_VALID | The verification code has expired, please retrieve it again. |\n CAPTCHA_NOT_MATCH | The verification code is incorrect, please check. |\n CAPTCHA_USED | The verification code has been used, please retrieve a new one. |\n REMOTE_INVOKE_FAIL | A system or application error occurred. |\n MISSING_AUTHORIZER |Authorizer Information in the request is missing.|\n AUTHORIZER_INFORMATION_ONLY | Authorizer information cannot be multiple.|\n MISSING_LETTER_OF_COMMITMENT | Letter of commitment information in the request is missing.|\n MISSING_HOLDING_LETTER_OF_COMMITMENT | Holding letter of commitment information in the request is missing.|\n MISSING_POWER_OF_ATTORNEY | Power of attorney information in the request is missing.|"
          content:
            application/json:
              schema:
                $ref: ../models/Error.yaml
      operationId: submit-account
      x-stoplight:
        id: qobblne9q3bmg
      description: "提交开通账户所需的实名认证详情信息,进行账户激活。\n- 当status为INIT时,允许提交,提交后状态变为UNDER_REVIEW。并发重复提交,会返回REQUEST_CONFLICT\n- 当status为REQUIRE_ACTION时,允许提交,提交后状态变为UNDER_REVIEW。并发重复提交,会返回REQUEST_CONFLICT\n不同授权类型下,公司成员必填信息特别说明:\n\n**授权人类型** | **法人** | **代理人**| **法人短信验证**|**法人承诺函** |**法人手持承诺函** | **代理人授权书**\n---------|----------|---------|----------|---------|---------|---------\n LEGALPERSON | 必填 | 非必填 | 必填 | 非必填 | 非必填| 非必填\n AUTHORIZER | 必填 | 必填 | 非必填 | 必填| 必填| 必填"
      security:
      - 授权码授权: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: ../models/KYCRequest.yaml
    servers:
    - url: https://global-api.lianlian.com/api/v1
      description: ''
components:
  schemas:
    Bank:
      title: Bank
      x-stoplight:
        id: w1hhf29j491my
      type: object
      description: 银行虚拟卡
      properties:
        region:
          type: string
          description: 地区,定长2位
        account_name:
          type: string
          description: 虚拟卡名称
          maxLength: 256
        status:
          type: string
          description: 状态
          maxLength: 10
          enum:
          - DISABLED
          - ENABLED
        account_number:
          type: string
          description: 虚拟卡号
          maxLength: 32
        swift_code:
          type: string
          description: swift code
          minLength: 8
          maxLength: 11
        bank_name:
          type: string
          description: 银行名称
          maxLength: 256
        branch_code:
          type: string
          description: 开户银行分行代码
          maxLength: 32
        bank_address:
          type: string
          description: 银行地址
          maxLength: 256
        currency:
          type: string
          description: 币种,定长3位
      required:
      - region
      - account_name
      - status
      - account_number
      - swift_code
      - bank_name
    Account:
      title: Account
      type: object
      description: 收款账户(带充值功能)
      examples: []
      properties:
        account_id:
          type: string
          description: 账户号
          maxLength: 32
        account_type:
          type: string
          description: 账户类型
          maxLength: 8
          enum:
          - TOPUP
          - RECEIVING
        member_id:
          type: string
          description: 会员id
          maxLength: 32
        currency:
          type: string
          description: 币种,3位,参考:https://www.iso.org/iso-4217-currency-codes.html
        status:
          type: string
          description: 状态
          maxLength: 8
          enum:
          - ENABLED
          - DISABLED
        freeze_amount:
          type: string
          maxLength: 16
        available_amount:
          type: string
          maxLength: 16
        bank:
          $ref: '#/components/schemas/Bank'
      required:
      - account_id
      - account_type
      - member_id
      - currency
      - freeze_amount
  securitySchemes:
    Component:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: ''
          refreshUrl: ''
          scopes: {}
      description: 详情参考[Authentication](https://developer.lianlianglobal.com/docs/lppe/b6b6c2d4906e9-authentication) > 客户端凭据授权
    Component_2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: ''
          tokenUrl: ''
          refreshUrl: ''
          scopes: {}
      description: 详情参考[Authentication](https://developer.lianlianglobal.com/docs/lppe/b6b6c2d4906e9-authentication) > 授权码授权
x-refined-from:
- lianlian-global-connect-account-openapi.yml
- lianlian-global-lppe-accounts-openapi.yml