solana_getnewtokensbyexchange
Retrieve a list of newly added tokens from a specific exchange on Solana networks. Specify the network, exchange, and pagination details for precise querying.
Instructions
Get the list of new tokens by given exchange.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | The cursor to the next page | |
exchange | Yes | ||
limit | No | The limit per page | |
network | Yes | The network to query |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "The cursor to the next page",
"type": "string"
},
"exchange": {
"type": "string"
},
"limit": {
"default": 100,
"description": "The limit per page",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"network": {
"description": "The network to query",
"enum": [
"mainnet",
"devnet"
],
"type": "string"
}
},
"required": [
"network",
"exchange"
],
"type": "object"
}