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

# Dome API

> Welcome to Dome - the ultimate API for prediction markets

<Danger>
  ## **Dome has been acquired by Polymarket**

  Read the full announcement [**here**.](https://domeapi.io/blog/dome-joins-polymarket)

  As such, all Dome APIs will reach end of life on **April 28th, 2026**.

  For additional APIs and prediction market data, we recommend using the new APIs from Polymarket [**here**](https://docs.polymarket.com/api-reference/introduction).
</Danger>

## What is Dome API?

Dome API provides comprehensive access to prediction market data across multiple platforms including Polymarket and Kalshi. Get real-time market prices, historical candlestick data, wallet analytics, order tracking, and cross-platform market matching. Get started with a free API key [here](https://dashboard.domeapi.io/).

## Quick Start

### 1. Get Your API Key

[Sign up](https://dashboard.domeapi.io/) for an account and get your API Key from the dashboard. <img src="https://mintcdn.com/dome/IMjIL8frwMJgJNzZ/images/hero-light.png?fit=max&auto=format&n=IMjIL8frwMJgJNzZ&q=85&s=fa7ef3bac84721e7d4366ad8207f8068" alt="Hero Light Pn" width="2064" height="1104" data-path="images/hero-light.png" />

### 2. Install SDK

<CodeGroup>
  ```bash TypeScript theme={null}
  npm install @dome-api/sdk
  ```

  ```bash Python theme={null}
  pip install dome-api-sdk
  ```
</CodeGroup>

### 3. Make Your First Request

<CodeGroup>
  ```typescript TypeScript theme={null}
  import { DomeClient } from '@dome-api/sdk';

  const dome = new DomeClient({
  apiKey: 'your-api-key-here',
  });

  const marketPrice = await dome.polymarket.markets.getMarketPrice({
  token_id: '98250445447699368679516529207365255018790721464590833209064266254238063117329',
  });

  console.log('Market Price:', marketPrice.price);
  ```

  ```python Python theme={null}
  from dome_api_sdk import DomeClient

  dome = DomeClient({"api_key": "your-api-key-here"})

  market_price = dome.polymarket.markets.get_market_price({
      "token_id": "98250445447699368679516529207365255018790721464590833209064266254238063117329"
  })
  print(f"Market Price: {market_price.price}")
  ```
</CodeGroup>

## Need Help?

* Join our [Discord](https://discord.gg/fKAbjNAbkt) community
* Check out our SDKs: [TypeScript](https://github.com/kurushdubash/dome-sdk-ts) | [Python](https://github.com/kurushdubash/dome-sdk-py)
