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

# Quickstart

> Get started with Clemta API in minutes

# Clemta Quickstart

Welcome to Clemta! This guide will help you get up and running with the Clemta API in just a few minutes.

## 1. Get Your Clemta Credentials

There is no public signup for Clemta. Your API credentials will be sent to you via email by our team.\
**Check your inbox for an email from Clemta containing your API key and other credentials.**

If you have not received your credentials, please contact us at [tech@clemta.com](mailto:tech@clemta.com).

Your API key should look like this:

`clemta_gUrCvqYbJBNh4m3LbEZ_7n6yZxCdPP5ZRxHDmfmHH3Kr7kYLU4`

## 2. Make Your First API Call

Include your API key in the `X-API-KEY` header on every request. See [Authentication](/api-reference/authentication) for details.

Here's how to initiate a company formation using the Clemta API.

### Example: Using cURL

```bash theme={null}
curl -X POST https://api.clemta.com/formations \
  -H "X-API-KEY: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "company_name": "Acme Inc.",
    "country": "US",
    "email": "founder@acme.com",
    ...
  }'
```

## 3. Next Steps

* Explore the [API Reference](/api-reference) for all available endpoints.
* Review [Rate Limiting](/api-reference/rate-limiting) to understand usage limits.
* Check out our [Guides](/guides) for more advanced use cases.

## Need Help?

If you have any questions or need support, reach out to us at [tech@clemta.com](mailto:tech@clemta.com).
