cURL
curl --request GET \ --url https://app.tokencraft.dev/api/v1/tokensets/{id} \ --header 'Authorization: Bearer <token>'
Retrieve a specific tokenset by ID
GET /tokensets/{id}
id
200 OK
{ "id": "tokenset-123", "workspace_id": "550e8400-e29b-41d4-a716-446655440000", "name": "Colors", "description": "Color tokens for the design system", "created_at": "2025-01-15T10:00:00Z", "updated_at": "2025-01-15T10:00:00Z" }
curl -H "Authorization: Bearer tkc_your_token_here" \ https://app.tokencraft.dev/api/v1/tokensets/tokenset-123