> For the complete documentation index, see [llms.txt](https://docs.ticko.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ticko.xyz/api-documentation/account/rest-api/get-account-settings.md).

# Get Account Settings

## Get Account Settings

> Returns account settings and configured leverage overrides.\
> \
> \*\*Rate-limit weight\*\*\
> \
> \- \*\*By IP:\*\* \`2\`

```json
{"openapi":"3.1.0","info":{"title":"Ticko API","version":"1.0"},"tags":[{"name":"Account","description":"Account state and settings: balances, positions, flows, leverage, margin, transfers, and withdrawals. Read endpoints are public by address; write endpoints are signed."}],"servers":[{"url":"https://api.testnet.ticko.xyz/v1","description":"Testnet"}],"paths":{"/account/settings":{"get":{"operationId":"getAccountSettings","summary":"Get Account Settings","tags":["Account"],"description":"Returns account settings and configured leverage overrides.\n\n**Rate-limit weight**\n\n- **By IP:** `2`","parameters":[{"name":"address","in":"query","required":true,"description":"Account address.","schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/Envelope"},{"type":"object","properties":{"data":{"type":"object","properties":{"address":{"type":"string","description":"Account address."},"position_mode":{"type":"string","enum":["one_way","hedge"],"description":"`one_way` or `hedge`."},"auto_borrow":{"type":"boolean","description":"Whether auto-borrow is enabled."},"leverage":{"type":"array","description":"Configured per-symbol leverage settings. Symbols not returned use the market default leverage.","items":{"type":"object","properties":{"symbol_id":{"type":"integer","description":"Trading pair ID."},"margin_mode":{"type":"string","enum":["cross","isolated"],"description":"`cross` or `isolated`."},"position_side":{"type":"string","enum":["both","long","short"],"description":"`both`, `long`, or `short`."},"leverage":{"type":"integer","description":"Configured leverage."}}}},"coin_leverage":{"type":"array","description":"Configured per-coin leverage settings. Coins not returned use the market default leverage.","items":{"type":"object","properties":{"coin_id":{"type":"integer","description":"Coin ID."},"leverage":{"type":"integer","description":"Configured coin leverage."}}}}}}}}]}}}}}}}},"components":{"schemas":{"Envelope":{"type":"object","description":"Standard success response envelope. `data` is defined per endpoint.","properties":{"code":{"type":"string","description":"`\"0\"` on success."},"msg":{"type":"string","description":"Empty on success."},"trace_code":{"type":"string","description":"Backend trace identifier. Empty on success."}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.ticko.xyz/api-documentation/account/rest-api/get-account-settings.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
