# Categories

Operations for badge category management

## Get all badge categories

> Returns the complete list of badge categories used to classify achievements in Decentraland.\
> \
> Available categories:\
> \- \*\*Explorer\*\*: Badges related to discovering and exploring scenes, locations, and the metaverse\
> \- \*\*Collector\*\*: Badges for acquiring and equipping wearables, emotes, and other digital assets\
> \- \*\*Creator\*\*: Badges for publishing original content like wearables, emotes, and collections\
> \- \*\*Socializer\*\*: Badges for social interactions, event attendance, and community engagement\
> \- \*\*Builder\*\*: Badges for creating and deploying scenes in Genesis City\
> \
> These categories help organize badges and allow users to filter achievements by type of activity.<br>

```json
{"openapi":"3.1.0","info":{"title":"Decentraland Badges API","version":"1.0.0"},"tags":[{"name":"Categories","description":"Operations for badge category management"}],"servers":[{"url":"https://badges.decentraland.org","description":"Production environment"},{"url":"https://badges.decentraland.zone","description":"Development environment"}],"security":[],"paths":{"/categories":{"get":{"tags":["Categories"],"summary":"Get all badge categories","description":"Returns the complete list of badge categories used to classify achievements in Decentraland.\n\nAvailable categories:\n- **Explorer**: Badges related to discovering and exploring scenes, locations, and the metaverse\n- **Collector**: Badges for acquiring and equipping wearables, emotes, and other digital assets\n- **Creator**: Badges for publishing original content like wearables, emotes, and collections\n- **Socializer**: Badges for social interactions, event attendance, and community engagement\n- **Builder**: Badges for creating and deploying scenes in Genesis City\n\nThese categories help organize badges and allow users to filter achievements by type of activity.\n","operationId":"getBadgeCategories","responses":{"200":{"description":"Successfully retrieved badge categories","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"categories":{"type":"array","items":{"type":"string","enum":["Explorer","Collector","Creator","Socializer","Builder"]}}}}}}}}},"400":{"description":"Bad request","content":{"application/json":{"schema":{"type":"object","description":"Error response object","properties":{"error":{"type":"string","description":"Human-readable error message"},"code":{"type":"string","description":"Machine-readable error code"}},"required":["error"]}}}},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"type":"object","description":"Error response object","properties":{"error":{"type":"string","description":"Human-readable error message"},"code":{"type":"string","description":"Machine-readable error code"}},"required":["error"]}}}}}}}}}
```
