Get Available APIs


Returns the list of APIs available for the current account, including the call URL, documentation URL, price, and whether batch calls are supported.

Endpoint

  • URL: GET /v1/get_api_price
  • Method: GET
  • Authentication: Required
  • X-Address: Required

Request Example

GET /v1/get_api_price HTTP/1.1
Host: api.gopluslabs.io
Authorization: PersonalSign {sign}.{timestamp}
X-Address: {evmAddress}
Accept: application/json

Response Example

{
  "code": 1,
  "message": "ok",
  "result": [
    {
      "api": "https://api.gopluslabs.io/api/v1/token_security/{chain_id}",
      "doc": "https://docs.gopluslabs.io/reference/tokensecurityusingget_1",
      "price": "25",
      "batch_call": 1
    }
  ]
}

Response Fields

  • code — Status code (e.g., 1 for success).
  • message — Status message (e.g., "ok").
  • result — Array of API objects:
    • api — API endpoint URL.
    • doc — Documentation URL.
    • price — Price per call (CU).
    • batch_call — Batch call support (1 = supported, 0 = not supported).