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

# Quickstart

> Start building an awesome integration in just minutes.

## Get started in three steps

Get your first integration with Mayer running in just three steps.

### Step 1: Obtain an API Token

If you don't have an API token already, please visit [Obtain an API Token](/essentials/get-access) to learn how to obtain one.

### Step 2: Write your first API call

```c# theme={null}
string mayerApiToken = "88888888888888888888";
var client = new HttpClient();

// Attach the API token to your HTTP client
client.DefaultRequestHeaders.TryAddWithoutValidation("Authorization", $"Bearer {mayerApiToken}");

// Fetch your deal via HTTP in JSON
var deal = await client.GetFromJsonAsync<Deal>("https://api.mayerex.com/api/deals/76665798864");

Console.WriteLine(deal.DealName); // Success!
```

### Step 3: Go live

Great! Now you've successfully integrated Mayer with your platform. From this point forward, you can integrate how you'd like and publish your code to your servers and go live as soon as possible!

Don't worry about accidentally deleting data or overriding input, the API is **read-only.**

<Note>
  **Need help?** Send us an email by clicking the Support button in the top right.
</Note>
