> For the complete documentation index, see [llms.txt](https://docs.odinbot.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.odinbot.io/api-documentation/api-methods/get-v1-auto-sell-profiles.md).

# GET /v1/auto-sell-profiles

## List all auto-sell profiles for your account.

> Retrieve every auto-sell profile you have configured in the OdinBot interface.   Supports optional cursor-based pagination: if the response includes a \`cursor\` value, pass it as a \`cursor\` query parameter in your next request to fetch the following batch.

```json
{"openapi":"3.1.1","info":{"title":"Odinbot API","version":"0.1.0"},"servers":[{"url":"https://api.odinbot.io"}],"security":[{"apiKey":[]}],"components":{"securitySchemes":{"apiKey":{"type":"apiKey","name":"x-api-key","in":"header"}},"responses":{"401":{"description":"Unauthorized. Make sure you're using the right api key.","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"Message"}}}}}},"429":{"description":"Too many requests","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"Message"}}}}}}}},"paths":{"/v1/auto-sell-profiles":{"get":{"summary":"List all auto-sell profiles for your account.","description":"Retrieve every auto-sell profile you have configured in the OdinBot interface.   Supports optional cursor-based pagination: if the response includes a `cursor` value, pass it as a `cursor` query parameter in your next request to fetch the following batch.","parameters":[{"in":"query","required":false,"name":"cursor","schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","required":["autoSellProfiles"],"properties":{"autoSellProfiles":{"type":"array","items":{"$ref":"#components/schemas/AutoSellProfile"}},"cursor":{"type":"string"}}}}}},"401":{"$ref":"#/components/responses/401"},"429":{"$ref":"#/components/responses/429"}}}}}}
```
