> 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/trade/rest-api/get-executions.md).

# Get Executions

## Get Executions

> Returns fills for an address. This endpoint uses cursor pagination. If \`start\_time\` and \`end\_time\` are omitted, the default window is the last 7 days. History is limited to the last 365 days and the maximum single query window is 365 days.\
> \
> \*\*Time filter:\*\* \`start\_time <= time < end\_time\`.\
> \
> \*\*Rate-limit weight\*\*\
> \
> \- \*\*By IP:\*\* \`2\`

```json
{"openapi":"3.1.0","info":{"title":"Ticko API","version":"1.0"},"tags":[{"name":"Trade","description":"Order lifecycle: place, modify, cancel (single and batch), chase, cancel-all, plus open orders, order history, and executions. All write endpoints are signed (Signing Type A)."}],"servers":[{"url":"https://api.testnet.ticko.xyz/v1","description":"Testnet"}],"paths":{"/trade/executions":{"get":{"operationId":"getExecutions","summary":"Get Executions","tags":["Trade"],"description":"Returns fills for an address. This endpoint uses cursor pagination. If `start_time` and `end_time` are omitted, the default window is the last 7 days. History is limited to the last 365 days and the maximum single query window is 365 days.\n\n**Time filter:** `start_time <= time < end_time`.\n\n**Rate-limit weight**\n\n- **By IP:** `2`","parameters":[{"name":"address","in":"query","required":true,"description":"Account address.","schema":{"type":"string"}},{"name":"symbol_id","in":"query","required":false,"description":"Trading pair ID.","schema":{"type":"integer"}},{"name":"order_id","in":"query","required":false,"description":"Filter by order ID.","schema":{"type":"string"}},{"name":"start_time","in":"query","required":false,"description":"Start timestamp.","schema":{"type":"integer"}},{"name":"end_time","in":"query","required":false,"description":"End timestamp.","schema":{"type":"integer"}},{"name":"limit","in":"query","required":false,"description":"Default `50`, maximum `2000`.","schema":{"type":"integer"}},{"name":"cursor","in":"query","required":false,"description":"Pagination cursor.","schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/Envelope"},{"type":"object","properties":{"data":{"type":"object","properties":{"list":{"type":"array","description":"Execution objects.","items":{"type":"object","properties":{"trade_id":{"type":"string","description":"Trade ID."},"order_id":{"type":"string","description":"Order ID."},"symbol_id":{"type":"integer","description":"Trading pair ID."},"is_buy":{"type":"boolean","description":"`true` for buy, `false` for sell."},"price":{"type":"string","description":"Fill price."},"quantity":{"type":"string","description":"Fill quantity."},"amount":{"type":"string","description":"Fill amount."},"fee":{"type":"string","description":"Fee."},"fee_coin_id":{"type":"integer","description":"Fee coin ID."},"is_maker":{"type":"boolean","description":"Whether the order was maker."},"closed_pnl":{"type":["string","null"],"description":"Closed PnL for closing fills."},"tx_hash":{"type":"string","description":"Transaction hash."},"time":{"type":"integer","description":"Fill timestamp."}}}},"next_cursor":{"type":["string","null"],"description":"Cursor for the next page."},"has_more":{"type":"boolean","description":"Whether another page is available."}}}}}]}}}}}}}},"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/trade/rest-api/get-executions.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.
