pryscraper/templates/coinmarketcap-coin.json
cryptorugmunch 8d25702eca chore(license): re-license to dual MIT (core) + BSL 1.1 (stealth)
Squashed from chore/license-relicense. Full message preserved in the
original branch commit bb77eb5. See ADR-0002 for the decision rationale.

Refs: ADR-0002, commit bb77eb5
2026-07-02 19:59:18 +02:00

47 lines
No EOL
1.1 KiB
JSON

{
"name": "CoinMarketCap Coin",
"description": "Extract cryptocurrency data from CoinMarketCap",
"site": "coinmarketcap.com",
"category": "financial",
"icon": "\ud83e\ude99",
"schema": {
"name": "coinmarketcap",
"base_selector": ".sc-16r8icm-0",
"fields": [
{
"name": "name",
"selector": ".sc-1q9q90x-0",
"type": "text"
},
{
"name": "price",
"selector": ".priceValue",
"type": "text",
"transform": "float"
},
{
"name": "market_cap",
"selector": ".statsValue",
"type": "text"
},
{
"name": "volume_24h",
"selector": ".statsValue:not(:first-of-type)",
"type": "text"
},
{
"name": "circulating_supply",
"selector": ".max-supply",
"type": "text"
},
{
"name": "change_24h",
"selector": ".sc-15yy2pl-0 span:first-child",
"type": "text"
}
]
},
"url_pattern": "*://www.coinmarketcap.com/*",
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}