Skip to main content

Overview

Retrieve detailed information about notable people in the cryptocurrency industry, including their roles, projects, and social links.

Usage

coinpaprika-cli person <person_id> [OPTIONS]

Arguments

person_id
string
required
The unique identifier for the person (e.g., vitalik-buterin, satoshi-nakamoto, changpeng-zhao)

Options

output
string
default:"table"
Output format: table or json
raw
boolean
default:"false"
Output raw JSON without metadata wrapper (useful for scripting)

Examples

Get Vitalik Buterin’s profile

coinpaprika-cli person vitalik-buterin

Get Satoshi Nakamoto’s information

coinpaprika-cli person satoshi-nakamoto

Get person details as JSON

coinpaprika-cli person changpeng-zhao --output json

Research project founders

coinpaprika-cli person gavin-wood --output json

Response

The command returns detailed information about the person:
{
  "id": "vitalik-buterin",
  "name": "Vitalik Buterin",
  "description": "Vitalik Buterin is a Russian-Canadian programmer and writer primarily known as a co-founder of Ethereum and as a co-founder of Bitcoin Magazine. Buterin was born in Russia and lived there until the age of six when his parents emigrated to Canada in search of better employment opportunities.",
  "teams_count": 3,
  "links": {
    "twitter": ["https://twitter.com/VitalikButerin"],
    "github": ["https://github.com/vbuterin"],
    "medium": ["https://medium.com/@VitalikButerin"]
  },
  "positions": [
    {
      "coin_id": "eth-ethereum",
      "coin_name": "Ethereum",
      "position": "Co-Founder"
    },
    {
      "coin_id": "btc-bitcoin",
      "coin_name": "Bitcoin Magazine",
      "position": "Co-Founder"
    }
  ]
}

Response Fields

id
string
Unique person identifier
name
string
Full name of the person
description
string
Biographical information and background
teams_count
number
Number of projects/teams this person is involved with
Social media and website links
  • twitter - Twitter/X profile URLs
  • github - GitHub profile URLs
  • medium - Medium blog URLs
  • linkedin - LinkedIn profile URLs
  • Other platform links as available
positions
array
List of positions held in various cryptocurrency projects

Position Object

coin_id
string
CoinPaprika ID of the associated cryptocurrency
coin_name
string
Display name of the cryptocurrency
position
string
Role or position title (e.g., “Founder”, “CEO”, “Developer”, “Advisor”)

Notes

  • Person IDs are typically formatted as firstname-lastname in lowercase
  • The positions array shows current and past roles
  • Links include social media and professional profiles
  • All values may be null if data is unavailable
  • Available on free tier

Finding Person IDs

You can discover person IDs through:
  1. Search command: Find people by name
    coinpaprika-cli search "vitalik" --categories people
    
  2. Coin details: Person IDs are included in coin team information
    coinpaprika-cli coin eth-ethereum --output json
    
  3. Common format: Usually firstname-lastname (e.g., satoshi-nakamoto)

Common Person IDs

  • vitalik-buterin - Ethereum co-founder
  • satoshi-nakamoto - Bitcoin creator
  • changpeng-zhao - Binance founder
  • brian-armstrong - Coinbase CEO
  • charles-hoskinson - Cardano founder
  • gavin-wood - Polkadot founder
  • justin-sun - TRON founder
  • search - Search for people by name
  • coin - Get coin details including team information

Build docs developers (and LLMs) love