## Earned badges for the token owner **get** `/api/v1/me/badges` Earned badges for the token owner ### Returns - `badges: optional array of object { description, earnedAt, emoji, 3 more }` - `description: optional string` - `earnedAt: optional string` - `emoji: optional string` - `name: optional string` - `slug: optional string` - `xpThreshold: optional number` ### Example ```http curl https://racks.cash/api/v1/me/badges ``` #### Response ```json { "badges": [ { "description": "description", "earnedAt": "2019-12-27T18:11:19.117Z", "emoji": "⚔️", "name": "First Quest", "slug": "first-quest", "xpThreshold": 100 } ] } ```