> For the complete documentation index, see [llms.txt](https://whitepaper.spellborne.gg/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://whitepaper.spellborne.gg/community/openapi/abstract-api-endpoints.md).

# Abstract API Endpoints

## GET /api/abstract/users

>

```json
{"openapi":"3.0.0","info":{"title":"Spellborne API","version":"1.0.0"},"servers":[{"url":"https://api.spellborne.gg","description":"Production API URL"},{"url":"http://localhost:4000","description":"Local development server"}],"paths":{"/api/abstract/users":{"get":{"summary":"","description":"","parameters":[],"responses":{"200":{"description":" retrieved successfully","content":{"application/json":{"schema":{"type":"object","properties":{}}}}},"404":{"description":" not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string"}}}}}}}}}}}
```

## GET /api/abstract/users/{address}

>

```json
{"openapi":"3.0.0","info":{"title":"Spellborne API","version":"1.0.0"},"servers":[{"url":"https://api.spellborne.gg","description":"Production API URL"},{"url":"http://localhost:4000","description":"Local development server"}],"paths":{"/api/abstract/users/{address}":{"get":{"summary":"","description":"","parameters":[{"name":"address","in":"path","required":true,"schema":{"type":"string"},"description":"Wallet address or username of the user"}],"responses":{"200":{"description":" retrieved successfully","content":{"application/json":{"schema":{"type":"object","properties":{}}}}},"404":{"description":" not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string"}}}}}}}}}}}
```

## GET /api/abstract/users/csv

>

```json
{"openapi":"3.0.0","info":{"title":"Spellborne API","version":"1.0.0"},"servers":[{"url":"https://api.spellborne.gg","description":"Production API URL"},{"url":"http://localhost:4000","description":"Local development server"}],"paths":{"/api/abstract/users/csv":{"get":{"summary":"","description":"","parameters":[],"responses":{"200":{"description":" retrieved successfully","content":{"text/csv":{"schema":{"type":"string","format":"binary"}}}},"404":{"description":" not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string"}}}}}}}}}}}
```
