Quick Start

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.

Make your first request

To make your first request, send an authenticated request to the main endpoint...

This endpoint is used to test the API key.

Test API Key

GET https://dl3arn.com/api/v1/

Probar el funcionamiento de la API Key.

Headers

NameTypeDescription

Authorization

Bearer

Bearer Token

{
      data: "Authenticated",
      error: null,
      status: 200,
      success: true,
}

Take a look at what you might call this method:

const response = await axios.get('https://dl3arn.com/api/v1/', {
    headers: { Authorization: "Bearer <API_KEY>" }
})

Last updated