# 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.

You can generate an API key at any time.

<figure><img src="/files/SDmn2TZTN0kO5yYuGoGB" alt=""><figcaption></figcaption></figure>

To create an API key:

1. Sign up in offical website and go to the API keys section.
2. Click **Create API**.
3. Select a blockchian and type in a name for the key and click **Create**.
4. Copy or write down the created API key.

<figure><img src="/files/8J1IF6QM2MFTl9IycoK3" alt=""><figcaption></figcaption></figure>

## Blockchain API Endpoint

`https://api.data123.io/<BLOCKCHAIN>/<API KEY>/<VERSION>`

**BLOCKCHAIN**:  Aleo,  Filecoin,  ethereum .......

**NETWORK**:   mainnet, testnet

Take a look at how you might call this method of Aleo via `curl`:

REST:

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

```
curl https://api.data123.io/aleo/<API KEY>/v1/testnet3/transaction/at1td9klwgpevhgqcpfd5tvu88pv67uajugnxqysd93w40kx8na2cyq8qh3ls
```

{% endtab %}
{% endtabs %}

JSON-RPC:

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

```
curl https://api.data123.io/aleo/<API KEY>/rpc/v1/testnet3 \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0","method":"getTransaction","params":['at1td9klwgpevhgqcpfd5tvu88pv67uajugnxqysd93w40kx8na2
cyq8qh3ls'],"id":1}' 
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.data123.io/quick-start.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
