Skip to main content

Overview

Generate copy-paste attribution snippets for crediting CoinPaprika in your projects. While attribution is not required, it’s appreciated.

Usage

coinpaprika-cli attribution

Options

--output
string
default:"table"
Output format: table or json
--raw
boolean
default:"false"
JSON output without _meta wrapper

Examples

Display all snippets

coinpaprika-cli attribution
Output:
─── CoinPaprika attribution snippets (copy & paste) ───

HTML:
  <a href="https://coinpaprika.com">Powered by CoinPaprika</a>

React/JSX:
  <a href="https://coinpaprika.com" target="_blank" rel="noopener">
    Powered by CoinPaprika
  </a>

Markdown:
  [Powered by CoinPaprika](https://coinpaprika.com)

Plain text:
  Data provided by CoinPaprika (https://coinpaprika.com)

GitHub README badge:
  [![CoinPaprika](https://img.shields.io/badge/data-CoinPaprika-green)](https://coinpaprika.com)

Data is free forever. Attribution is appreciated, not required.
API: api.coinpaprika.com

JSON output for automation

coinpaprika-cli attribution --output json --raw
Response:
{
  "name": "CoinPaprika",
  "url": "https://coinpaprika.com",
  "api": "https://api.coinpaprika.com",
  "html": "<a href=\"https://coinpaprika.com\">Powered by CoinPaprika</a>",
  "markdown": "[Powered by CoinPaprika](https://coinpaprika.com)",
  "badge": "https://img.shields.io/badge/data-CoinPaprika-green"
}

Attribution Formats

HTML

Simple link for websites:
<a href="https://coinpaprika.com">Powered by CoinPaprika</a>

React/JSX

React component with proper attributes:
<a href="https://coinpaprika.com" target="_blank" rel="noopener">
  Powered by CoinPaprika
</a>

Markdown

For README files and documentation:
[Powered by CoinPaprika](https://coinpaprika.com)

Plain Text

For console output or text files:
Data provided by CoinPaprika (https://coinpaprika.com)

GitHub Badge

Shields.io badge for GitHub README:
[![CoinPaprika](https://img.shields.io/badge/data-CoinPaprika-green)](https://coinpaprika.com)
Renders as: CoinPaprika

Response Fields

name
string
Service name: CoinPaprika
url
string
Main website URL: https://coinpaprika.com
api
string
API base URL: https://api.coinpaprika.com
html
string
HTML anchor tag snippet
markdown
string
Markdown link format
badge
string
Shields.io badge URL

Integration Examples

<footer>
  <p>
    Market data provided by
    <a href="https://coinpaprika.com">CoinPaprika</a>
  </p>
</footer>

React Component

const Attribution = () => (
  <div className="attribution">
    Powered by{' '}
    <a 
      href="https://coinpaprika.com" 
      target="_blank" 
      rel="noopener noreferrer"
    >
      CoinPaprika
    </a>
  </div>
);

Command-line Tool Output

# Append attribution to your CLI output
echo "Data provided by CoinPaprika (https://coinpaprika.com)"

Documentation

## Data Source

This project uses cryptocurrency data from [CoinPaprika](https://coinpaprika.com),
a free API with 8,000+ coins and real-time market data.

[![CoinPaprika](https://img.shields.io/badge/data-CoinPaprika-green)](https://coinpaprika.com)

Attribution Policy

Attribution is appreciated but not required
  • Free tier: No attribution mandate
  • Paid plans: No attribution mandate
  • Commercial use: Allowed (check plan limits)
Attribution helps others discover the API.

Customization

Feel free to customize the text while keeping the link:
<!-- Custom variations -->
<a href="https://coinpaprika.com">Data from CoinPaprika</a>
<a href="https://coinpaprika.com">Crypto data by CoinPaprika</a>
<a href="https://coinpaprika.com">Market data: CoinPaprika</a>

plans

View pricing and plan details

global

Get market overview data to display

Notes

  • Attribution is voluntary for all plans (free and paid)
  • Links should point to coinpaprika.com (not the API subdomain)
  • Use target="_blank" for external links in web apps
  • Consider adding attribution in your app’s About/Credits section

Build docs developers (and LLMs) love