Skip to main content

Overview

GET /v2/streams/tokens returns the active tokens supported for stream creation on a specific chain. This is a public endpoint — no API key is required. Use this endpoint in two different ways:
  • To resolve the tokens that can be used as targetTokenId inside stream customArgs.
  • To resolve the tokens that can be used as rewardTokenId for token-based streams.
For reward-token selection, use the tokens where isAllowedRewardToken is true.
The chainId query parameter for this endpoint is the decimal EVM chain ID.

Supported Chains by Use Case

targetTokenId chains

For targetTokenId, this endpoint can be queried with any of the following decimal chain IDs.

Mainnet

Testnet

rewardToken chains

This same endpoint is also used for rewardToken, but stream creation currently supports rewardToken only on these 5 networks:

Mainnet

Testnet

Sepolia is included here specifically so you can test stream creation with rewardToken before moving to mainnet. If you need TURTLE test tokens on Sepolia (0xa78559593289728719bc46e7559ebdee5bc5ef7a) for testing, please contact the Turtle team to request them. On any of those supported networks, a stream can use both values on the same chain: a rewardToken for the reward asset and a targetTokenId inside customArgs for the tracked target token. The difference is not that they must belong to different chains. The difference is that rewardToken is currently limited to this smaller subset, while targetTokenId supports the broader list above.

Endpoint

Query Parameters
chainId
integer
required
Decimal EVM chain ID. This is required. Use the decimal chainId values listed above.

Response Example

Response Fields

tokens
SupportedToken[]
List of active tokens that can be used for streams on the requested chain.

SupportedToken fields

id
uuid
Unique token identifier in Turtle’s config catalog.
address
string
Token contract address.
name
string
Token name.
symbol
string
Token symbol.
decimals
integer
Decimal precision used by the token.
chainId
integer
Decimal EVM chain ID for the token.
logoUrl
string
Token logo URL.
isAllowedRewardToken
boolean
Whether the token can be used as rewardTokenId for token-based stream creation on that chain.

Important Notes

Requests without chainId, or with chainId = 0, are rejected with 400 Invalid Argument.
The handler excludes inactive tokens and filters out native assets, so this endpoint returns the currently usable non-native token set for stream creation.
A stream can use both a rewardToken and a targetTokenId on the same supported network. The distinction here is support scope, not mutual exclusion: rewardToken is currently limited to the 5-chain subset listed above, while targetTokenId supports the broader chain list documented on this page.
When selecting a rewardTokenId for POST /v2/streams/, choose one of the returned tokens where isAllowedRewardToken is true. Tokens with isAllowedRewardToken = false can still be valid for other use cases such as targetTokenId, but not as the stream reward token.
When calling this endpoint, send the decimal EVM chainId shown in the tables above.

Error Handling

Status Code: 400 Bad Request
Solution: Send a valid decimal EVM chain ID in the chainId query parameter.
Status Code: 500 Internal Server ErrorSolution: Retry the request and contact Turtle if the issue persists.