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

# Overview

> Three endpoints covering crypto protocols, chains, stablecoins, prediction markets, and public equities

The Artemis API is deliberately small. There is **one time-series endpoint** and **two discovery endpoints**. Everything Artemis tracks flows through them.

| You want to know                              | Endpoint                                                                          |
| --------------------------------------------- | --------------------------------------------------------------------------------- |
| What assets exist, and what sector each is in | [`GET /asset/`](/docs/docs/api-reference/discovery/list-assets)                        |
| Which metrics an asset has                    | [`GET /supported-metrics/`](/docs/docs/api-reference/discovery/list-supported-metrics) |
| The numbers                                   | [`GET /v2/data/{metricNames}`](/docs/docs/api-reference/data/fetch-metrics)            |

**Discover → describe → fetch.** Start at `/asset/` to find a symbol, ask `/supported-metrics/` what that symbol supports, then pull it from `/v2/data/`.

## What's covered

* **Applications** across lending, spot DEXes, perpetuals, prediction markets, liquid staking, and more ([recipe](/docs/artemis-api/recipes/crypto-protocols))
* **Chains**: L1s and L2s, with usage, fee and TVL metrics
* **Stablecoins**: supply, transfer volume, active addresses, transactions ([recipe](/docs/artemis-api/recipes/stablecoins))
* **Public equities**: price, quarterly P\&L, valuation multiples, and company-specific KPIs ([recipe](/docs/artemis-api/recipes/equities))

Crypto and equities live in the same namespace, so a single request can return Bitcoin, Hyperliquid and Coinbase side by side.

## Next steps

<CardGroup cols={2}>
  <Card title="Quickstart" href="/docs/artemis-api/quickstart">
    Your first request in under a minute.
  </Card>

  <Card title="Core concepts" href="/docs/artemis-api/core-concepts">
    How symbols, metrics, dates and cuts fit together.
  </Card>

  <Card title="Find your metric" href="/docs/artemis-api/discovery">
    Enumerate a sector and list its metrics.
  </Card>

  <Card title="Recipes" href="/docs/artemis-api/recipes/sector-leaderboards">
    Copy-paste answers to real questions.
  </Card>
</CardGroup>
