GET /communities/:communityId/tokens

Get Kudos tokens for a specific Community
Returns an array of Community Token Objects that were created under a particular community.

Query String Params

All parameters to this endpoint are optional.
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
headline
string
The headline of the Kudos.
null
isHidden
boolean
Whether the Kudos is hidden by the admin (hidden Kudos tokens don’t show up in the community page)
null
any custom attribute name
string/number/boolean/date
A custom attribute inserted during creation of the Kudos token
null

Example Response

Query: https://api.mintkudos.xyz/v1/communities/kudos/tokens?org_info=wonder&headline=test&assigner=0xkei
{
"limit": 50,
"offset": 0,
"data": [
{
"tokenId": 500,
"headline": "test",
"assetUrl": "https://s3.amazonaws.com/sandbox.images.mintkudos.xyz/token/500.png",
"createdAtTimestamp": "2022-08-31T07:46:59.482Z",
"customAttributes": [
{
"fieldName": "org_info",
"type": "string",
"value": "wonder"
},
{
"fieldName": "assigner",
"type": "string",
"value": "0xkei"
},
]
}
]
}