> For the complete documentation index, see [llms.txt](https://judini.gitbook.io/api-judini/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://judini.gitbook.io/api-judini/quick-start.md).

# Quick Start

{% hint style="info" %}
**Good to know:** A quick start guide can be good to help folks get up and running with your API in a few steps. Some people prefer diving in with the basics rather than meticulously reading every page of documentation!
{% endhint %}

## Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can generate an API key from your Dashboard at any time.

## Get your User ID

Go to the main menu where you can get your user ID

{% hint style="info" %}
Contact the Judini team to confirm if these credentials are correct for your account.
{% endhint %}

## Make your first request

To make your first request, send an authenticated request to the pets endpoint. This will create a `pet`, which is nice.

## Get your data

<mark style="color:green;">`POST`</mark> `https://judini.ai/v1/me`

Creates a new pet.

#### Request Body

| Name                                     | Type   | Description  |
| ---------------------------------------- | ------ | ------------ |
| user<mark style="color:red;">\*</mark>   | string | User ID      |
| apiKey<mark style="color:red;">\*</mark> | string | Your API Key |

{% tabs %}
{% tab title="200 Array with your data" %}

```javascript
{
    "name"="Wilson",
    "owner": {
        "id": "sha7891bikojbkreuy",
        "name": "Samuel Passet",
    "species": "Dog",}
    "breed": "Golden Retriever",
}
```

{% endtab %}

{% tab title="401 Permission denied" %}

{% endtab %}
{% endtabs %}
