Quick Start

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!

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

Contact the Judini team to confirm if these credentials are correct for your account.

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

POST https://judini.ai/v1/me

Creates a new pet.

Request Body

Name
Type
Description

user*

string

User ID

apiKey*

string

Your API Key

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

Last updated