LianLian Global Ew Oauth2 API

The Ew Oauth2 API from LianLian Global — 1 operation(s) for ew oauth2.

Operations 1

GET /ew-oauth2/token Get Access Token #

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-ew-oauth2-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-ew-oauth2-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: APP Grant Ew Oauth2 API
  version: '1.0'
  description: 'You can use the OAuth 2.0 client credentials grant specified in RFC 6749, to access web-hosted resources by using the identity of an application. This type of grant is commonly used for server-to-server interactions that must run in the background, without immediate interaction with a user. These types of applications are often referred to as daemons or service accounts.



    `example for uk sandbox authorization uri`

    ```http

    // Line breaks are for legibility only.

    GET https://uk-ew-plane.lianlianpay-inc.com/authorize?

    client_id={app_client_id}

    &response_type=code

    &state={state}

    &redirect_uri={uri}

    ```


    After User grant authorization to an APP, that will be redirect to `redirect_uri` with `code`.

    `example for redirect_uri`

    ```http

    // Line breaks are for legibility only.

    GET https://{redirect_uri}?

    code={authorization_code}

    &state={state}

    ```


    The `authorization_code` should be a Param to call `Get Access Token` API.


    '
servers:
- url: https://test-global-api.lianlianpay-inc.com/gateway/v1/
  description: SANDBOX
- url: https://uk-api.lianlianglobal.com/gateway/v1/
  description: UK PRD
- url: https://us-api.lianlianglobal.com/gateway/v1/
  description: US PRD
tags:
- name: Ew Oauth2
paths:
  /ew-oauth2/token:
    parameters: []
    get:
      summary: Get Access Token
      tags:
      - Ew Oauth2
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OAuth2Token'
      operationId: get-access-token
      description: Request an access token.
      parameters:
      - schema:
          type: string
          enum:
          - authorization_code
          - refresh_token
        in: query
        name: grant_type
        description: Type of grant.
        required: true
      - schema:
          type: string
        in: query
        name: client_id
        description: APP client ID.
        required: true
      - schema:
          type: string
        in: query
        name: client_secret
        description: Client APP secret key.
        required: true
      - schema:
          type: string
        in: query
        name: code
        description: Mandatory if grant_type = `authorization_code`.<br>The authorization_code that Successful response of after user authed.
      - schema:
          type: string
        in: query
        name: redirect_uri
        description: Mandatory if grant_type = `authorization_code`. <br> The redirect URI where you want the response to be sent for your app to handle. It must exactly match one of the redirect URIs that you registered in the portal, except that it must be URL-encoded, and it can have additional path segments.
      - schema:
          type: string
        in: query
        name: refresh_token
        description: Mandatory if grant_type = `refresh_token`.<br>An OAuth 2.0 refresh token. The app can use this token to acquire other access tokens after the current access token expires. In order to prevent client APP miss the response result, LL Platform will maintain the idempotent successful request for 15 minutes.
components:
  schemas:
    OAuth2Token:
      type: object
      x-tags:
      - Models
      title: OAuth2Token
      x-stoplight:
        id: 30d9df6e32ca2
      properties:
        access_token:
          type: string
          description: The requested access token. The app can use this token to authenticate to the secured resource, such as a web API.
        refresh_token:
          type: string
          description: An OAuth 2.0 refresh token. The app can use this token to acquire other access tokens after the current access token expires.
        expires_in:
          type: integer
          description: The amount of time that an access token is valid (in seconds).
x-stoplight:
  id: hj6mir7esziez