Lighter tokenlist API

The tokenlist API from Lighter — 1 operation(s) for tokenlist.

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/lighter-tokenlist-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

lighter-tokenlist-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Lighter account tokenlist API
  version: "1.0"
servers:
- url: https://mainnet.zklighter.elliot.ai
tags:
- name: tokenlist
paths:
  /api/v1/tokenlist:
    get:
      summary: tokenlist
      operationId: tokenlist
      tags:
      - tokenlist
      description: Get token list and their metadata
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TokenList'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultCode'
components:
  schemas:
    TokenList:
      type: object
      title: TokenList
      required:
      - code
      - tokens
      properties:
        code:
          type: integer
          format: int32
          example: 200
        message:
          type: string
        tokens:
          type: array
          items:
            $ref: '#/components/schemas/Token'
    ResultCode:
      type: object
      properties:
        code:
          type: integer
          format: int32
          example: '200'
        message:
          type: string
      title: ResultCode
      required:
      - code
    Token:
      type: object
      title: Token
      required:
      - symbol
      - name
      - logo
      - logo_extension
      - description_key
      - gecko_id
      - paprika_id
      - market
      - asset_type
      - categories
      - is_allowed_mainnet
      - is_asset_allowed_mainnet
      properties:
        symbol:
          type: string
          example: ETH
        name:
          type: string
          example: Ethereum
        logo:
          type: string
          example: eth
        logo_extension:
          type: string
          example: svg
          enum:
          - svg
          - png
        description_key:
          type: string
          example: token_description_eth
        gecko_id:
          type: string
          example: ethereum
        paprika_id:
          type: string
          example: eth-ethereum
        market:
          type: string
          enum:
          - SPOT
          - PERPS
        asset_type:
          type: string
          enum:
          - CRYPTO
          - RWA
        categories:
          type: array
          items:
            type: string
        is_allowed_mainnet:
          type: boolean
          format: boolean
        is_asset_allowed_mainnet:
          type: boolean
          format: boolean
  securitySchemes:
    apiKey:
      type: apiKey
      description: Enter JWT Bearer token **_only_**
      name: Authorization
      in: header