GET /tokens

View all Kudos tokens
Returns a list of token objects.

Query String Params

All parameters to this endpoint are optional. Refer to the pagination doc for more info about how pagination works.
Field
Type
Description
Default
limit
integer
Maximum number of items to return (0-1000)
50
offset
integer
Number of items to skip before selecting items
0

Example Response

{
"limit": 50,
"offset": 0,
"data": [
{
"tokenId": 500,
"headline": "test headline 1",
"description": "",
"startDateTimestamp": 1656460800000,
"endDateTimestamp": null,
"links": [],
"communityId": "kudos",
"createdByAddress": "0x12345abcd505d772efcc5dc43fbc090b099fd2a1",
"createdAtTimestamp": 1654907553808,
"imageUrl": "https://images.mintkudos.xyz/token/500.png",
"claimabilityAttributes": {
"isSignatureRequired": true,
"isAllowlistRequired": true,
"totalClaimCount": null,
"remainingClaimCount": null,
"expirationTimestamp": null
}
},
...
{
"tokenId": 502,
"headline": "test headline 2",
"description": "description 2",
"startDateTimestamp": null,
"endDateTimestamp": null,
"links": [],
"communityId": "kudos",
"createdByAddress": "0x12345abcd505d772efcc5dc43fbc090b099fd2a1",
"createdAtTimestamp": 1655257357489,
"imageUrl": "https://images.mintkudos.xyz/token/502.png",
"claimabilityAttributes": {
"isSignatureRequired": true,
"isAllowlistRequired": true,
...
}