Crawlora
ProductPlatformsUse CasesDocsPricingCompare
Sign inTry Playground Console
Crawlora

Structured public web data APIs for search, maps, geocoding, streaming, travel, real estate, marketplaces, apps, social, audio, crypto, finance, and AI workflows with managed execution and credit-based usage.

Product

Web Scraping APIFeaturesInfrastructure FeaturesPlatformsTravel APIsReal Estate APIsPricing

Platforms

Google SearchGoogle TrendsBingBraveGoogle MapsGeocodingJustWatchAirbnbTripAdvisorZillowCoinGeckoYahoo FinanceGoogle FinanceAmazon

Developers

DocsGetting StartedAuthenticationAPI ExamplesRecipesShowcasesBlogChangelogPlaygroundSDKsIntegrationsMCP

Use cases

SERP MonitoringGoogle Maps LeadsTravel & Hospitality ResearchProperty Market IntelligenceApp Review AnalysisReview & Reputation MonitoringTikTok Trend IntelligenceYouTube Creator IntelligenceAmazon Product MonitoringMusic Catalog / Playlist IntelligencePodcast & Audio IntelligenceCrypto Market ResearchFinance Market DataAI Agent Web Data

Legal

TermsPrivacy
Product
Web Scraping APIFeaturesInfrastructure FeaturesPlatformsTravel APIsReal Estate APIsPricing
Platforms
Google SearchGoogle TrendsBingBraveGoogle MapsGeocodingJustWatchAirbnbTripAdvisorZillowCoinGeckoYahoo FinanceGoogle FinanceAmazon
Developers
DocsGetting StartedAuthenticationAPI ExamplesRecipesShowcasesBlogChangelogPlaygroundSDKsIntegrationsMCP
Use cases
SERP MonitoringGoogle Maps LeadsTravel & Hospitality ResearchProperty Market IntelligenceApp Review AnalysisReview & Reputation MonitoringTikTok Trend IntelligenceYouTube Creator IntelligenceAmazon Product MonitoringMusic Catalog / Playlist IntelligencePodcast & Audio IntelligenceCrypto Market ResearchFinance Market DataAI Agent Web Data
Legal
TermsPrivacy

© 2026 Built with 💖 by Tony Wang

|System:Crawlora API status
Docs menu

Start here

OverviewGetting StartedAuthenticationRate Limits and CreditsError Handling

Examples

ExamplescURLTypeScriptPythonGo

Recipes

RecipesSERP MonitoringGoogle Maps LeadsApp Review AnalysisYouTube TranscriptsTikTok Trend ResearchAmazon Product MonitoringAI Agent Web Data

API Reference

AirbnbAmazonApplePodcastsAppStoreBingBraveCoinGeckoeBayGeocodingGoogleGoogle FinanceGoogle MapGooglePlayInstagramJustWatchLinkedInProductHuntSimilarWebSpotifySpotifyPodcastsTikTokTripAdvisorTrustpilotYahoo FinanceYouTubeZillow

Start here

OverviewGetting StartedAuthenticationRate Limits and CreditsError Handling

Examples

ExamplescURLTypeScriptPythonGo

Recipes

RecipesSERP MonitoringGoogle Maps LeadsApp Review AnalysisYouTube TranscriptsTikTok Trend ResearchAmazon Product MonitoringAI Agent Web Data

API Reference

AirbnbAmazonApplePodcastsAppStoreBingBraveCoinGeckoeBayGeocodingGoogleGoogle FinanceGoogle MapGooglePlayInstagramJustWatchLinkedInProductHuntSimilarWebSpotifySpotifyPodcastsTikTokTripAdvisorTrustpilotYahoo FinanceYouTubeZillow
  1. Home
  2. /Docs
  3. /CoinGecko API

API Reference

CoinGecko API Documentation

Use Crawlora's CoinGecko API endpoints to extract supported public CoinGecko data as structured JSON. This documentation covers 21 active endpoints including CoinGecko categories, CoinGecko category coins, CoinGecko chains, CoinGecko chain detail, and related APIs. Developers can use these endpoints for monitoring, enrichment, research dashboards, internal data pipelines, and AI-agent workflows without maintaining platform-specific scraping code. Each endpoint page documents authentication, request parameters such as slug, id, q, cURL examples, response examples, response schemas, errors, credit cost, and Playground testing. Send requests to the Crawlora API with an x-api-key header, review usage and plan limits on pricing, and test safe sample requests in Playground before moving the workflow into production.

Try CoinGecko markets Start with endpoint docsPricing

Quick start

Choose an endpoint, send an authenticated request with the x-api-key header, and inspect the normalized JSON response. The examples below use the public Crawlora API base URL and the same endpoint catalog used by Playground.

Base URL
https://api.crawlora.net/api/v1
Auth header
x-api-key: $CRAWLORA_API_KEY
Primary endpoint
GET /coingecko/markets
Credit cost
2 credits/request
curl -X GET "https://api.crawlora.net/api/v1/coingecko/markets?page=1&limit=10&vs_currency=btc" \
  -H "x-api-key: $CRAWLORA_API_KEY"
Try CoinGecko markets in PlaygroundAPI key authenticationReview Crawlora pricing

Common concepts

  • Authenticated API-key requests
  • Structured JSON responses
  • Credit-based usage and plan limits
  • Documented validation and upstream errors
  • Playground testing before integration
  • Responsible public web data workflows
CoinGecko platform pageError handling guideRate limits and credits

CoinGecko API endpoints

These endpoint cards are generated from the active Crawlora endpoint catalog, including method, path, auth mode, credit cost, parameter summary, docs, and Playground links.

GET/coingecko/categoriesapiKey2 credits/request

CoinGecko categories

Returns normalized CoinGecko category rows from the public categories page. This endpoint supports the documented `vs_currency` enum.

Required params: None

CoinGecko categories documentationTry CoinGecko categories in Playground
GET/coingecko/category/{slug}/coinsapiKey2 credits/request

CoinGecko category coins

Returns normalized coin rows from a CoinGecko public category page. This endpoint supports the documented `vs_currency` enum.

Required params: slug:path

CoinGecko category coins documentationTry CoinGecko category coins in Playground
GET/coingecko/chainsapiKey2 credits/request

CoinGecko chains

Returns normalized chain rows from the CoinGecko public website chains table. This endpoint supports the documented `vs_currency` enum.

Required params: None

CoinGecko chains documentationTry CoinGecko chains in Playground
GET/coingecko/chains/{id}apiKey2 credits/request

CoinGecko chain detail

Returns normalized sections from a CoinGecko public chain detail page. Sections are omitted when not present. This endpoint supports the documented `vs_currency` enum.

Required params: id:path

CoinGecko chain detail documentationTry CoinGecko chain detail in Playground
GET/coingecko/coin/{id}apiKey2 credits/request

CoinGecko coin profile

Returns normalized CoinGecko profile, market stats, links, and categories for one coin id. This endpoint supports the documented `vs_currency` enum and is not intended for real-time trading.

Required params: id:path

CoinGecko coin profile documentationTry CoinGecko coin profile in Playground
GET/coingecko/coin/{id}/analysisapiKey3 credits/request

CoinGecko coin chart analysis

Returns derived price-chart metrics from CoinGecko public chart JSON. This endpoint supports the documented `vs_currency` enum and is not investment advice or real-time trading data.

Required params: id:path

CoinGecko coin chart analysis documentationTry CoinGecko coin chart analysis in Playground
GET/coingecko/exchange/{id}apiKey2 credits/request

CoinGecko exchange detail

Returns normalized profile stats and market rows from a CoinGecko public exchange page. This endpoint supports the documented `vs_currency` enum.

Required params: id:path

CoinGecko exchange detail documentationTry CoinGecko exchange detail in Playground
GET/coingecko/exchangesapiKey2 credits/request

CoinGecko exchanges

Returns normalized exchange rows from CoinGecko public website exchange tables. This endpoint supports the documented `vs_currency` enum.

Required params: None

CoinGecko exchanges documentationTry CoinGecko exchanges in Playground
GET/coingecko/gainers-losersapiKey2 credits/request

CoinGecko crypto gainers and losers

Returns normalized rows from CoinGecko's public crypto gainers and losers table. This endpoint supports the documented `vs_currency` enum.

Required params: None

CoinGecko crypto gainers and losers documentationTry CoinGecko crypto gainers and losers in Playground
GET/coingecko/globalapiKey2 credits/request

CoinGecko global market snapshot

Returns normalized global market metrics from CoinGecko's public charts page.

Required params: None

CoinGecko global market snapshot documentationTry CoinGecko global market snapshot in Playground
GET/coingecko/global/chartsapiKey2 credits/request

CoinGecko global chart series

Returns normalized global chart series from public CoinGecko website JSON endpoints.

Required params: None

CoinGecko global chart series documentationTry CoinGecko global chart series in Playground
GET/coingecko/learn/articlesapiKey2 credits/request

CoinGecko Learn articles

Returns normalized article cards from CoinGecko Learn public pages.

Required params: None

CoinGecko Learn articles documentationTry CoinGecko Learn articles in Playground
GET/coingecko/marketsapiKey2 credits/request

CoinGecko markets

Returns normalized cryptocurrency market rows from CoinGecko public pages. This endpoint supports the documented `vs_currency` enum and is not intended for real-time trading.

Required params: None

CoinGecko markets documentationTry CoinGecko markets in Playground
GET/coingecko/new-coinsapiKey2 credits/request

CoinGecko new cryptocurrencies

Returns normalized rows from CoinGecko's public new cryptocurrencies table. This endpoint supports the documented `vs_currency` enum.

Required params: None

CoinGecko new cryptocurrencies documentationTry CoinGecko new cryptocurrencies in Playground
GET/coingecko/newsapiKey2 credits/request

CoinGecko news cards

Returns normalized article cards from CoinGecko's public news page.

Required params: None

CoinGecko news cards documentationTry CoinGecko news cards in Playground
GET/coingecko/nft/category/{slug}apiKey2 credits/request

CoinGecko NFT category

Returns normalized NFT collection rows from a CoinGecko public NFT category page. This endpoint supports the documented `vs_currency` enum.

Required params: slug:path

CoinGecko NFT category documentationTry CoinGecko NFT category in Playground
GET/coingecko/nftsapiKey2 credits/request

CoinGecko NFT collections

Returns normalized NFT collection rows from the CoinGecko public website NFT table. This endpoint supports the documented `vs_currency` enum.

Required params: None

CoinGecko NFT collections documentationTry CoinGecko NFT collections in Playground
GET/coingecko/searchapiKey1 credit/request

CoinGecko discovery search

Returns normalized CoinGecko search sections from the public website search JSON. Empty valid searches return empty arrays.

Required params: q:query

CoinGecko discovery search documentationTry CoinGecko discovery search in Playground
GET/coingecko/token-unlocksapiKey2 credits/request

CoinGecko incoming token unlocks

Returns normalized rows from CoinGecko's public incoming token unlocks page.

Required params: None

CoinGecko incoming token unlocks documentationTry CoinGecko incoming token unlocks in Playground
GET/coingecko/treasuriesapiKey2 credits/request

CoinGecko crypto treasuries

Returns normalized entity rows from CoinGecko's public crypto treasuries tables. This endpoint supports the documented `vs_currency` enum.

Required params: None

CoinGecko crypto treasuries documentationTry CoinGecko crypto treasuries in Playground
GET/coingecko/trendingapiKey2 credits/request

CoinGecko trending highlights

Returns deduped trending coins and categories from the public CoinGecko highlights page. This endpoint supports the documented `vs_currency` enum.

Required params: None

CoinGecko trending highlights documentationTry CoinGecko trending highlights in Playground

Endpoint reference table

EndpointAPI pathMethodCreditsRequired paramsDocsPlayground
CoinGecko categories/coingecko/categoriesGET2 credits/requestNoneView docsTry endpoint
CoinGecko category coins/coingecko/category/{slug}/coinsGET2 credits/requestslug:pathView docsTry endpoint
CoinGecko chains/coingecko/chainsGET2 credits/requestNoneView docsTry endpoint
CoinGecko chain detail/coingecko/chains/{id}GET2 credits/requestid:pathView docsTry endpoint
CoinGecko coin profile/coingecko/coin/{id}GET2 credits/requestid:pathView docsTry endpoint
CoinGecko coin chart analysis/coingecko/coin/{id}/analysisGET3 credits/requestid:pathView docsTry endpoint
CoinGecko exchange detail/coingecko/exchange/{id}GET2 credits/requestid:pathView docsTry endpoint
CoinGecko exchanges/coingecko/exchangesGET2 credits/requestNoneView docsTry endpoint
CoinGecko crypto gainers and losers/coingecko/gainers-losersGET2 credits/requestNoneView docsTry endpoint
CoinGecko global market snapshot/coingecko/globalGET2 credits/requestNoneView docsTry endpoint
CoinGecko global chart series/coingecko/global/chartsGET2 credits/requestNoneView docsTry endpoint
CoinGecko Learn articles/coingecko/learn/articlesGET2 credits/requestNoneView docsTry endpoint
CoinGecko markets/coingecko/marketsGET2 credits/requestNoneView docsTry endpoint
CoinGecko new cryptocurrencies/coingecko/new-coinsGET2 credits/requestNoneView docsTry endpoint
CoinGecko news cards/coingecko/newsGET2 credits/requestNoneView docsTry endpoint
CoinGecko NFT category/coingecko/nft/category/{slug}GET2 credits/requestslug:pathView docsTry endpoint
CoinGecko NFT collections/coingecko/nftsGET2 credits/requestNoneView docsTry endpoint
CoinGecko discovery search/coingecko/searchGET1 credit/requestq:queryView docsTry endpoint
CoinGecko incoming token unlocks/coingecko/token-unlocksGET2 credits/requestNoneView docsTry endpoint
CoinGecko crypto treasuries/coingecko/treasuriesGET2 credits/requestNoneView docsTry endpoint
CoinGecko trending highlights/coingecko/trendingGET2 credits/requestNoneView docsTry endpoint

Related Crawlora API pages

CoinGecko scraper API platform pageTry the primary endpoint in PlaygroundBrowse supported platformsCrawlora API pricing
Back to docs