Retrieve a full list of token mints by tags

Retrieve a list of tagged tokens

Parameters

  • tags (string): Supports multiple values separated by a , for each value
    • Supported values are:
      • tradable
      • verified
      • unknown
      • community
      • strict
      • lst
      • birdeye-trending
      • pump

ℹ️

Getting all tradable tokens that meet jup.ag’s routing and liquidity threshold, is a large response. Do wait sometime for the response to return.

Typings of response data

Field AttributeTypeDescription
addressstringAddress of the token
namestringName of the token
symbolstringSymbol of the token
decimalsnumberNumber of decimal places the token amount complies to
logoURIstringURI of the token logo
tagsstring Tags that are attached to the token
daily_volumenumberDaily volume of the token
freeze_authoritystring | nullFreeze authority address of the token
mint_authoritystring | nullMint authority address of the token

Example Response

[
  {
    "address": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn",
    "name": "Jito Staked SOL",
    "symbol": "JitoSOL",
    "decimals": 9,
    "logoURI": "https://storage.googleapis.com/token-metadata/JitoSOL-256.png",
    "tags": [
      "verified",
      "community",
      "strict",
      "lst"
    ],
    "daily_volume": 9015483.466939302,
    "freeze_authority": null,
    "mint_authority": "6iQKfEyhr3bZMotVkW6beNZz5CPAkiwvgV2CTje9pVSS"
  },
  {
    "address": "uSo1ynGWS3qc2B1nN2MmEHN5cYaNbT7vJp87LtgkpV8",
    "name": "Urban Staked SOL",
    "symbol": "uSOL",
    "decimals": 9,
    "logoURI": "https://arweave.net/hrYI439t97ffLMJTWzAGc2qJApoAunr-Dw0Q86IxNbE",
    "tags": [
      "lst",
      "verified"
    ],
    "daily_volume": null,
    "freeze_authority": null,
    "mint_authority": "GMw5iSABjXdHqz1JaDjm249sNMsUJfpKMS55hfMtFcqT"
  },
  ...
  {
    "address": "gangqfNY8fA7eQY3tHyjrevxHCLnhKRrLGRwUMBR4y6",
    "name": "lotusSOL",
    "symbol": "lotusSOL",
    "decimals": 9,
    "logoURI": "https://arweave.net/G9bkE8AlT7NBw0E6sBKtPziO6toOhI5Y6jIzU27klec",
    "tags": [
      "lst",
      "verified"
    ],
    "daily_volume": null,
    "freeze_authority": null,
    "mint_authority": "6iKy6m3xu2ACMAzxWW66bPbgb71D1aPH46FbdAhV8io8"
  },
  {
    "address": "gSvP9zBJ33pX7W2finzAYJZp6Q9ipNAQ19xU9PrCirz",
    "name": "Guardian Staked SOL",
    "symbol": "gS",
    "decimals": 9,
    "logoURI": "https://raw.githubusercontent.com/Guardian-Validator/gS/main/gS.svg",
    "tags": [
      "lst",
      "verified"
    ],
    "daily_volume": null,
    "freeze_authority": null,
    "mint_authority": "HEyY7sTzfFAPjf3eFsDP4wKx1NCNoGvvPxKBECT4ijgn"
  }
]
Language
Click Try It! to start a request and see the response here!