GET
/
tags
/
{tag_id}
CLI
curl --request GET \
--url 'https://api.coinpaprika.com/v1/tags/blockchain-service'
{
  "id": "blockchain-service",
  "name": "Blockchain Service",
  "coin_counter": 160,
  "ico_counter": 80,
  "description": "A solution for companies wanting to build, host and use their own blockchain apps, smart contracts and functions on the blockchain.",
  "type": "functional",
  "coins": [
    "dcr-decred",
    "hc-hypercash",
    "nxs-nexus"
  ],
  "icos": [
    "kodakcoin-kodakone",
    "acad-academy"
  ]
}

Path Parameters

tag_id
string
required
Example:

"blockchain-service"

Query Parameters

additional_fields
string

Comma separated list of additional fields to include in query result for each tag. Currently supported values are: "coins" and "icos".

Example:

"coins,icos"

Response

successful operation

id
string

ID of the tag

Example:

"blockchain-service"

name
string

Name of the tag

Example:

"Blockchain Service"

coin_counter
integer

Number of coins with this tag

Example:

160

ico_counter
integer

Number of ico projects with this tag

Example:

80

description
string
Example:

"A solution for companies wanting to build, host and use their own blockchain apps, smart contracts and functions on the blockchain."

type
string
Example:

"functional"

coins
string[] | null
Example:
["dcr-decred", "hc-hypercash", "nxs-nexus"]
icos
string[] | null
Example:
["kodakcoin-kodakone", "acad-academy"]