Managing Tokens
List all your tokens
const response = await fetch("https://api-blowfish.neuko.ai/api/v1/tokens/", {
headers: { Authorization: `Bearer ${token}` },
});
const { tokens } = await response.json();Example response
{
"tokens": [
{
"poolAddress": "PoolAddr123...",
"tokenMint": "MintAddr456...",
"ticker": "MCT",
"tokenName": "My Cool Token",
"isClaimed": false,
"claimedAt": null,
"claimedToAddress": null,
"deployedAt": "2024-01-15T12:00:00.000Z"
},
{
"poolAddress": "PoolAddr789...",
"tokenMint": "MintAddrABC...",
"ticker": "AGT",
"tokenName": "Agent Token",
"isClaimed": true,
"claimedAt": "2024-01-16T08:30:00.000Z",
"claimedToAddress": "WalletAddr...",
"deployedAt": "2024-01-14T09:00:00.000Z"
}
]
}Get a specific token
Token fields
Field
Description
Verifying on-chain
Scoping
Last updated