List your CLI tokens (metadata only)
GET
/v1/tokens
const url = 'https://beta-api.plune.ai/v1/tokens';const options = {method: 'GET', headers: {cookie: 'plune_session=<plune_session>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://beta-api.plune.ai/v1/tokens \ --cookie plune_session=<plune_session>Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Your tokens
Media type application/json
object
tokens
required
Array<object>
object
id
required
string format: uuid
prefix
required
string
createdAt
required
string format: date-time
revokedAt
required
string format: date-time
expiresAt
When the token stops working on its own. null for tokens issued before expiry existed (#258); new ones get 90 days.
string format: date-time
limit
required
How many live tokens one account may hold; the mint answers 409 past it. Here so a screen can say “N of M” before the click rather than after.
integer
Example generated
{ "tokens": [ { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "prefix": "example", "createdAt": "2026-04-15T12:00:00Z", "revokedAt": "2026-04-15T12:00:00Z", "expiresAt": "2026-04-15T12:00:00Z" } ], "limit": 1}No / invalid session