> ## Documentation Index
> Fetch the complete documentation index at: https://apidocs.ripio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Private topics

Some of these topics require a ticket authorizing their usage, since these
topics contain sensitive user information

To generate a new ticket you should send a **POST** request on [https://api.ripio.com/trade/ticket](https://api.ripio.com/trade/ticket)

You will get a response like this:

```json theme={null}
{
  "message": null,
  "data": { "ticket": "d90a9a10-06af-44af-8592-baf866dd1503"} 
}
```

Then you can subscribe to a private websocket by passing right params
incluing the ticket this way:

```json theme={null}
{
  "method": "subscribe", 
  "topics": ["order_status"], 
  "ticket": "d90a9a10-06af-44af-8592-baf866dd1503" 
}
```
