# Order list reception

This request lets you receive the whole orders list on account.

## List of orders

> List of user orders.<br>

```json
{"openapi":"3.0.3","info":{"title":"Client API","version":"4.1.0"},"servers":[{"url":"https://v4.dev.proxy-solutions.net/api"}],"security":[{"api-key":[]}],"components":{"securitySchemes":{},"parameters":{"lang":{"name":"lang","description":"Language code","in":"query","required":false,"schema":{"type":"string","enum":["EN","RU","UA"],"default":"EN"}},"currency":{"name":"currency","description":"Currency code","in":"query","required":false,"schema":{"type":"string","enum":["USD","EUR","RUB","UAH","KZT"],"default":"USD"}}},"schemas":{"Order":{"type":"object","required":["id","status","service","quantity","period","amount","allowed_operations","resources_allocated"],"properties":{"id":{"type":"integer","minimum":1},"status":{"type":"string","enum":["waiting","waiting.activation","active","active.suspended","archived"],"description":"Order status"},"service":{"$ref":"#/components/schemas/Service"},"location":{"$ref":"#/components/schemas/Location"},"operator":{"$ref":"#/components/schemas/Operator"},"period":{"type":"integer","description":"Period in days"},"quantity":{"type":"integer","description":"Quantity"},"minimal_payment":{"type":"number","description":"Minimum payment amount."},"amount":{"type":"number","description":"Cost in base currency (USD)"},"converted_amount":{"type":"number","description":"Cost in the specified \"currency\""},"auto_continuation":{"type":"boolean","description":"Automatic renewal. <div style=\"padding-left:1em\">\n  **false**: upon expiration the order transitions to \"waiting\" state\n<br>\n  **true**: billing will renew the order as long as the client has sufficient balance\n</div>\n","default":false},"allowed_operations":{"type":"array","items":{"type":"string"},"description":"Operations allowed in the current order state (see post /user/orders/{id}/perform)\n"},"resources_allocated":{"type":"boolean"}}},"Service":{"type":"object","properties":{"id":{"type":"integer"},"provider":{"type":"string","enum":["server-proxies","mobile-proxies","webtools"]},"name":{"type":"string"}}},"Location":{"type":"object","required":["id","name"],"properties":{"id":{"type":"integer"},"type":{"type":"string","enum":["country","city"],"description":"Location type.  Present only when location is an order parameter\n"},"name":{"type":"string","description":"Location name.  Present only when location is an order parameter\n"},"country_name":{"type":"string","description":"Country name.  Present only when location is an order parameter\n"}}},"Operator":{"type":"object","required":["id","name"],"properties":{"id":{"type":"integer"},"name":{"type":"string"}}}}},"paths":{"/user/orders":{"get":{"summary":"List of orders","tags":["Orders"],"description":"List of user orders.\n","parameters":[{"$ref":"#/components/parameters/lang"},{"$ref":"#/components/parameters/currency"}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","properties":{"lang":{"type":"string"},"currency":{"type":"string"},"orders":{"type":"array","items":{"$ref":"#/components/schemas/Order"}}}}}}},"401":{"description":"Unauthorized"}}}}}}
```


---

# 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://proxy-solutions.gitbook.io/api-en/documention/orders/order-list-reception.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.
