GET /communities/:communityId/tokens
Get Kudos tokens for a specific Community
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 |
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"
},
]
}
]
}
Last modified 7mo ago