# Using your token

When you register for a CloudBrowser account, we generate a unique token that enables interaction with our service. Once your worker(s) are set up, you should use this token whenever you engage with the platform.

Most of our integrations support this token by simply adding the Authorization header.

For example, assuming your API token is «fh47832fg42-42893rh24-123g46fdn»:

```csharp
// CloudBrowser API URL
const serverUrl = 'https://production.cloudbrowser.ai/api/v1/Browser/Open';
const apiToken = 'fh47832fg42-42893rh24-123g46fdn';

var httpClient = new HttpClient();
httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", apiToken);
var browserWSEndpoint = await httpClient.GetStringAsync(serverUrl);

var browser = await Puppeteer.ConnectAsync(new ConnectOptions { BrowserWSEndpoint = browserWSEndpoint });
```

This setup allows seamless integration with our services using your unique API token for authentication and interaction.


---

# 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://cloudbrowser.gitbook.io/docs/cloud-service/using-your-token.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.
