# Quick Start

## Create your first Noty project:

After registering and logging in to Noty, we take you to onboarding to create your first project. When you finish onboarding, you will be directed to the main screen of your project. On this screen, you can access your API key.

If you need to find your API Key later, click on the three dots in the upper right corner of the project screen and go to Project settings. Here you can see your API Key; if there is a security problem, you can regenerate it.

<figure><img src="https://563717915-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FmsYEdLEsPwrgHJWFeaTx%2Fuploads%2FP3z2iKOJetZDXLazFIma%2FXnapper-2023-02-05-03.22.54.png?alt=media&#x26;token=06972ed4-d547-4d46-bc57-7fca0228e306" alt=""><figcaption></figcaption></figure>

## Send your events to Noty:

## Send your first event

<mark style="color:green;">`POST`</mark> `https://usenoty.com/api/v1/send`

This endpoint is used to send your events to Noty.

#### Headers

| Name                                            | Type   | Description         |
| ----------------------------------------------- | ------ | ------------------- |
| Content-Type<mark style="color:red;">\*</mark>  | String | application/json    |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer: YOUR\_TOKEN |

#### Request Body

| Name                                      | Type      | Description                                                                                                                                                                                                                                                                            |
| ----------------------------------------- | --------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| channel<mark style="color:red;">\*</mark> | string    | The channel you'd like to send an event to.                                                                                                                                                                                                                                            |
| message                                   | String    | Notification message.                                                                                                                                                                                                                                                                  |
| level                                     | Integer   | **Low**, **Normal**, and **High** levels can be defined here. If you leave this field blank, we will send a Low level notification. For more details, you can take a look at [Notification Levels](https://docs.usenoty.com/quick-start/starting-with-the-basics/notification-levels). |
| date                                      | Timestamp | By default, we store the current date and time. Use this field to send a different day and time. The date must be sent in "Y-m-d H:i:s" format.                                                                                                                                        |

{% tabs %}
{% tab title="200: OK " %}
Take a look at an example for publishing events.

{% tabs %}
{% tab title="cURL" %}

{% endtab %}
{% endtabs %}
{% endtab %}
{% endtabs %}
