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

# CoinPaprika Crypto API — Price & Market Data for Developers

> Real-time cryptocurrency market data API: prices, volume, market cap, and historical data via REST & WebSocket. Build with CoinPaprika's reliable crypto API.

<CardGroup cols={2}>
  <Card title="Full API reference" icon="bolt" color="#CE0017" href="/api-reference/rest-api/introduction">
    Dive into the comprehensive API documentation and start building.
  </Card>

  <Card title="Check API status" icon="signal" color="#CE0017" href="https://status.coinpaprika.com/">
    View the real-time status of our API services.
  </Card>
</CardGroup>

## CoinPaprika crypto API quickstart — 3 steps, free, no credit card required

<div style={{ position: 'relative', paddingBottom: '56.25%', height: 0, overflow: 'hidden', maxWidth: '100%', marginBottom: '1rem' }}>
  <iframe style={{ position: 'absolute', top: 0, left: 0, width: '100%', height: '100%' }} src="https://www.youtube.com/embed/qtt-jJGZz2o?si=Ia5Ajlar4FLLy_Wx" title="Get latest Bitcoin price in under 2 minutes — free API, no signup | CoinPaprika" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen />
</div>

<Tip>You can also make requests directly in our API Playground. Visit [GET Ticker by ID](/api-reference/tickers/get-ticker-for-a-specific-coin) to try it out.</Tip>

In the next steps, we will make a GET request to the [Ticker](/api-reference/tickers/get-ticker-for-a-specific-coin) endpoint to get the latest price of Bitcoin (BTC). All you need is the Coin ID.

* Coin ID: `btc-bitcoin`

<Steps>
  <Step title="Make a GET request">
    Simply make a GET request to the following endpoint to fetch the latest ticker data for any coin. We'll use the Bitcoin ID to populate the endpoint in the format `https://api.coinpaprika.com/v1/tickers/{coin_id}`.

    <CodeGroup>
      ```bash bash theme={"dark"}
      curl -X GET "https://api.coinpaprika.com/v1/tickers/btc-bitcoin"
      ```

      ```python python theme={"dark"}
      import requests

      response = requests.get("https://api.coinpaprika.com/v1/tickers/btc-bitcoin")
      print(response.json())
      ```

      ```javascript javascript theme={"dark"}
      fetch("https://api.coinpaprika.com/v1/tickers/btc-bitcoin")
        .then(response => response.json())
        .then(data => console.log(data));
      ```
    </CodeGroup>
  </Step>

  <Step title="Get latest data for Bitcoin (BTC)">
    This will return a detailed response with the latest data for Bitcoin (BTC), which will look similar to this. In the next step, we will extract just the price of BTC in USD.

    ```json Response [expandable] theme={"dark"}
    {
        "id": "btc-bitcoin",
        "name": "Bitcoin",
        "symbol": "BTC",
        "rank": 1,
        "total_supply": 19883231,
        "max_supply": 21000000,
        "beta_value": 0.879448,
        "first_data_at": "2010-07-17T00:00:00Z",
        "last_updated": "2025-06-25T10:47:48Z",
        "quotes": {
            "USD": {
                "price": 107077.69661924685,
                "volume_24h": 23175936198.924427,
                "volume_24h_change_24h": -44.15,
                "market_cap": 2129051326372,
                "market_cap_change_24h": 1.74,
                "percent_change_15m": 0.04,
                "percent_change_30m": 0.08,
                "percent_change_1h": 0.37,
                "percent_change_6h": 0.78,
                "percent_change_12h": 0.92,
                "percent_change_24h": 1.74,
                "percent_change_7d": 2.27,
                "percent_change_30d": -2.88,
                "percent_change_1y": 73.78,
                "ath_price": 111923.79452175781,
                "ath_date": "2025-05-22T18:42:03Z",
                "percent_from_price_ath": -4.33
            }
        }
    }
    ```
  </Step>

  <Step title="Extract the price">
    The response contains rich data. You can extract the USD price by navigating to the `quotes.USD.price` field. Here is how you can modify the request to get just the price:

    <CodeGroup>
      ```bash bash theme={"dark"}
      curl -s "https://api.coinpaprika.com/v1/tickers/btc-bitcoin" | jq '.quotes.USD.price'
      ```

      ```python python theme={"dark"}
      import requests

      response = requests.get("https://api.coinpaprika.com/v1/tickers/btc-bitcoin")
      price = response.json()["quotes"]["USD"]["price"]
      print(price)
      ```

      ```javascript javascript theme={"dark"}
      fetch("https://api.coinpaprika.com/v1/tickers/btc-bitcoin")
        .then(response => response.json())
        .then(data => {
          const price = data.quotes.USD.price;
          console.log(price);
        });
      ```
    </CodeGroup>

    And as a result, you will get the price of BTC in USD:

    ```json quotes.USD.price theme={"dark"}
    107077.69661924685
    ```

    Congratulations! You've successfully retrieved the latest price of Bitcoin!
  </Step>
</Steps>

<Card className="promo-card" href="/api-plans">
  **Ready to go professional? Explore our API plans for higher rate limits and advanced features.**
</Card>

## CoinPaprika Crypto API use cases

<CardGroup cols={2}>
  <Card title="Portfolio Tracking" icon="briefcase" color="#CE0017" href="/api-reference/tickers/get-tickers-for-all-active-coins">
    Build apps to monitor the value of cryptocurrency portfolios.
  </Card>

  <Card title="Market Analysis" icon="chart-line" color="#CE0017" href="/api-reference/coins/get-historical-ohlc">
    Analyze market trends with historical and latest data.
  </Card>
</CardGroup>

<CardGroup cols={2}>
  <Card title="Trading Bots" icon="robot" color="#CE0017" href="/api-reference/exchanges/list-an-exchange-markets">
    Develop automated trading strategies using our reliable data feed.
  </Card>

  <Card title="Crypto Research" icon="book" color="#CE0017" href="/api-reference/coins/list-coins">
    Access detailed information on thousands of coins and assets.
  </Card>
</CardGroup>

## Explore on-chain & DeFi data

<Card title="Looking for DEX & on-chain data?" icon="network-wired" color="#CE0017" href="https://docs.dexpaprika.com/">
  For latest data from Decentralized Exchanges (DEXes), including liquidity pools, swaps, and on-chain analytics, check out our sister project, **DexPaprika**.
</Card>

## CoinPaprika API support

We're here to help you build with CoinPaprika.

<CardGroup cols={2}>
  <Card title="Join Discord" icon="discord" color="#CE0017" href="https://discord.gg/DhJge5TUGM">
    Connect with our community for support and collaboration.
  </Card>

  <Card title="Give feedback" icon="message" color="#CE0017" href=" https://coinpaprika.com/contact/">
    Have suggestions? We'd love to hear from you.
  </Card>
</CardGroup>

<Note>
  **Need more?** We offer enterprise plans with dedicated support, higher rate limits, and custom solutions.
  [Contact our team](https://coinpaprika.com/contact/) to learn more.
</Note>
