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

# Quickstart

> Start calling our APIs in under 5 minutes!

## Setup your development

### Get your API Key

An API Key allows you to authenticate your requests and access the API services.
To acquire your API key and begin your development journey, follow these simple steps:

<AccordionGroup>
  <Accordion icon="circle-user" iconType="solid" title="Create a user profile and log in to the platform">
    If you don’t have an account yet, visit our [platform](https://web.identifai.net/register) and **create a user profile**.
    <br /> Once you’ve completed registration, **verify your email** and **log in** with your credentials.

    <Tip>
      If you need help with this step visit the [sign up](sign-up) section!
    </Tip>
  </Accordion>

  <Accordion icon="bars" iconType="solid" title="Access the user menu">
    After logging in, you will find yourself on the **main dashboard** of the platform.
    <br /> Click on the **user icon** (<Icon icon="circle-user" iconType="solid" />) in the top-right corner of the screen to open the **user dropdown menu**.
  </Accordion>

  <Accordion icon="key" iconType="solid" title="Select the API Key option">
    In the dropdown menu, select the **“Api-Key”** option. From there, you can **view** or **reset** your API key.

    <img className="block" src="https://mintcdn.com/identifai/Re-yCQxKL5fSPIbH/images/dashboard-apikey.png?fit=max&auto=format&n=Re-yCQxKL5fSPIbH&q=85&s=bd1ec4b041fa339c8cd55566bd306857" alt="Api-key instructions" width="1963" height="1122" data-path="images/dashboard-apikey.png" />
  </Accordion>
</AccordionGroup>

Your API key is ready to be used — start using our APIs now!

<Note>
  Store the API key in a secure location and avoid sharing it publicly.
</Note>

### Make an API call

<AccordionGroup>
  <Accordion icon="paper-plane" iconType="solid" title="Send a classification request">
    To start an image or video classification, you need to make a **POST** request to `/api/classification` or `/api/classification_video` with the required parameters (for details on the parameters, refer to the [API Reference](../api-reference) section).
  </Accordion>

  <Accordion icon="reply" iconType="solid" title="Retrieve the results">
    Use the provided identifier to retrieve the classification results by making a **GET** request to `/api/classification/{identifier}` or `/api/classification_video/{identifier}` (for details on how to structure this request, see the [API Reference](../api-reference) section).
  </Accordion>
</AccordionGroup>

<Tip>
  For more informations see the [Classification API](classification) section.
</Tip>

## In-depth guides

<CardGroup cols={3}>
  <Card title="Classify an image" icon="image" href="classification/classify-image">
    Start an image classification and find out if your image is real or artificially generated!
  </Card>

  <Card title="Classify a video" icon="film" href="classification/classify-video">
    Find out how to start a video classification and discover whether your video is authentic or artificially generated
  </Card>

  <Card title="Classify a speech" icon="microphone" href="classification/classify-speech">
    Find out how to start a speech classification and discover whether your speech is authentic or artificially generated
  </Card>
</CardGroup>

<Card title="Registration" icon="user-plus" href="sign-up">
  Need help with registration? Follow our tutorial.
</Card>
