# Quick Start

## Getting started

The first step to starting with Starfall API is to create an acocunt and get an API key.

* Create an account at <https://app.starfall.ai/signup>.
* Be sure to verify your email. Lookups are only allowed for verified emails.
* Go to the [API tokens](https://app.starfall.ai/dashboard/api-tokens) page to copy your API token.

## Making a request

Our entire API library is available at our [API reference](/api-reference.md) page.

* Include your header `Authorization: Token <your token>` in every API request.

Here is the curl of a sample API request to lookup a new wallet address:

```powershell
curl --location 'https://api.starfall.ai/api/addresses/0x4838b106fce9647bdf1e7877bf73ce8b0bad5f97/' \
--header 'Authorization: Token <your token heretoken>'
```


---

# 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://docs.starfall.ai/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.
