# 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"}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.odinbot.io/api-documentation/api-methods/get-v1-auto-sell-profiles.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
