{"id":13728884,"url":"https://github.com/tosunthex/CoinGecko","last_synced_at":"2025-05-08T01:30:24.655Z","repository":{"id":33787907,"uuid":"160361388","full_name":"tosunthex/CoinGecko","owner":"tosunthex","description":"CoinGecko .Net Standard api wrapper","archived":false,"fork":false,"pushed_at":"2024-08-23T20:26:18.000Z","size":916,"stargazers_count":113,"open_issues_count":8,"forks_count":46,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-05-05T03:42:44.114Z","etag":null,"topics":["api-wrapper","coingecko","coingecko-api","crypto","cryptocurrency","ethereum","exchange","market-data","netstandard","price"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tosunthex.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-12-04T13:25:52.000Z","updated_at":"2025-03-24T18:46:00.000Z","dependencies_parsed_at":"2023-01-15T02:32:21.888Z","dependency_job_id":"e0c5fa39-0925-4ea3-bb9c-d23490e9107c","html_url":"https://github.com/tosunthex/CoinGecko","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tosunthex%2FCoinGecko","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tosunthex%2FCoinGecko/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tosunthex%2FCoinGecko/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tosunthex%2FCoinGecko/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tosunthex","download_url":"https://codeload.github.com/tosunthex/CoinGecko/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252981358,"owners_count":21835414,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-wrapper","coingecko","coingecko-api","crypto","cryptocurrency","ethereum","exchange","market-data","netstandard","price"],"created_at":"2024-08-03T02:00:51.691Z","updated_at":"2025-05-08T01:30:23.921Z","avatar_url":"https://github.com/tosunthex.png","language":"C#","funding_links":[],"categories":["C#"],"sub_categories":[],"readme":"# CoinGecko\n[![Build status](https://ci.appveyor.com/api/projects/status/wa1y561abqm9uflj?svg=true)](https://ci.appveyor.com/project/tosunthex/coingecko)\n[![Codacy Badge](https://app.codacy.com/project/badge/Grade/94d224ae418e4473ad768f641f4ae419)](https://www.codacy.com/gh/tosunthex/CoinGecko/dashboard?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=tosunthex/CoinGecko\u0026amp;utm_campaign=Badge_Grade)![Nuget version](https://img.shields.io/nuget/v/CoinGeckoAsyncApi.svg)  ![Nuget downloads](https://img.shields.io/nuget/dt/CoinGeckoAsyncApi.svg)\n\nCoinGecko .Net Standard api wrapper\n\nA .Net wrapper for the CoinGecko Api as described on  [API documentation](https://www.coingecko.com/api?locale=en) , including all features the API provides using clear and readable objects.\n\nIf you think something is broken, something is missing or have any questions, please open an [Issue](https://github.com/tosunthex/CoinGecko/issues/new)\n\n## Installation\n\nAvailable on [Nuget](https://www.nuget.org/packages/CoinGeckoAsyncApi/).\n```\npm\u003e Install-Package CoinGeckoAsyncApi\n```\n\n## Quick start\n```cs\n...\nusing Newtonsoft.Json;\nusing CoinGecko.Clients;\n\nHttpClient httpClient = new HttpClient();\nJsonSerializerSettings serializerSettings = new JsonSerializerSettings();\n\nPingClient pingClient = new PingClient(httpClient, serializerSettings);\nSimpleClient simpleClient = new SimpleClient(httpClient, serializerSettings);\n\n// Check CoinGecko API status\nif ((await pingClient.GetPingAsync()).GeckoSays != string.Empty)\n{\n    // Getting current price of tether in usd\n    string ids = \"tether\";\n    string vsCurrencies = \"usd\";\n    Console.WriteLine((await simpleClient.GetSimplePrice(new []{ids},new []{vsCurrencies}))[\"tether\"][\"usd\"]);\n}\n\n...\n```\n\n## Examples\nExamples can be found in the Test project.\n\n## Available endpoint\n\n[Refer to CoinGecko official API](https://www.coingecko.com/api)\n\n|           Ping Endpoints                                    | Status | Testing | \n| :-----------------------------:                             | :----: | :-----: | \n| /ping                                                       |  [+]   |   [+]   | \n| /simple/price                                               |  [+]   |   [+]   | \n| /simple/token_price/{id}                                    |  [+]   |   [+]   |\n| /simple/supported_vs_currencies                             |  [+]   |   [+]   |\n\n|           Coins Endpoints                                   | Status | Testing | \n| :-----------------------------:                             | :----: | :-----: | \n| /coins/list                                                 |  [+]   |   [+]   | \n| /coins/market                                               |  [+]   |   [+]   | \n| /coins/{id}                                                 |  [+]   |   [+]   | \n| /coins/{id}/tickers                                         |  [+]   |   [+]   | \n| /coins/{id}/history                                         |  [+]   |   [+]   | \n| /coins/{id}/market_chart                                    |  [+]   |   [+]   |\n| /coins/{id}/market_chart/range                              |  [-]   |   [-]   | \n| /coins/{id}/status_updates                                  |  [-]   |   [-]   | \n| /coins/{id}/ohlc                                            |  [+]   |   [+]   | \n\n|           Contact Endpoints                                 | Status | Testing | \n| :-----------------------------:                             | :----: | :-----: | \n| /coins/{id}/contract/{contract_address}                     |  [+]   |   [+]   | \n| /coins/{id}/contract/{contract_address}/market_chart/       |  [+]   |   [+]   | \n| /coins/{id}/contract/{contract_address}/market_chart/range  |  [+]   |   [+]   | \n\n|           Exchanges Endpoints                               | Status | Testing | \n| :-----------------------------:                             | :----: | :-----: | \n| /exchanges                                                  |  [+]   |   [+]   | \n| /exchanges/list                                             |  [+]   |   [+]   | \n| /exchanges/{id}                                             |  [+]   |   [+]   | \n| /exchanges/{id}/tickers                                     |  [+]   |   [+]   | \n| /exchanges/{id}/status_updates                              |  [-]   |   [-]   | \n| /exchanges/{id}/volume_chart                                |  [+]   |   [+]   | \n\n|           Finance Endpoints                                 | Status | Testing | \n| :-----------------------------:                             | :----: | :-----: | \n| /finance_platforms                                          |  [+]   |   [+]   | \n| /finance_products                                           |  [+]   |   [+]   | \n\n|           Derivatives Endpoints                             | Status | Testing | \n| :-----------------------------:                             | :----: | :-----: | \n| /derivatives                                                |  [+]   |   [+]   | \n| /derivatives/exchanges                                      |  [+]   |   [+]   | \n| /derivatives/exchanges/{id}                                 |  [+]   |   [+]   | \n| /derivatives/exchanges/list                                 |  [+]   |   [+]   |\n\n|           Status Updates Endpoints                          | Status | Testing | \n| :-----------------------------:                             | :----: | :-----: | \n| /status_updates                                             |  [+]   |   [+]   | \n\n|           Events Endpoints                                  | Status | Testing | \n| :-----------------------------:                             | :----: | :-----: | \n| /events                                                     |  [+]   |   [+]   | \n| /events/countries                                           |  [+]   |   [+]   | \n| /events/types                                               |  [+]   |   [+]   | \n\n|           Exchange Rates Endpoints                          | Status | Testing | \n| :-----------------------------:                             | :----: | :-----: | \n| /exchange_rates                                             |  [+]   |   [+]   | \n\n|           Trending Endpoints                                | Status | Testing | \n| :-----------------------------:                             | :----: | :-----: | \n| /search/trending                                            |  [+]   |   [+]   |\n\n|           Global Endpoints                                  | Status | Testing | \n| :-----------------------------:                             | :----: | :-----: | \n| /global                                                     |  [+]   |   [+]   | \n| /global/decentralized_finance_defi                          |  [+]   |   [+]   | \n\n\n## Donations\nDonations are greatly appreciated and a motivation to keep improving.\n\n**BTC**:  1Czb4Z4Xj2rmvpN8YuNMc6dr7XNFuYQF5J\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftosunthex%2FCoinGecko","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftosunthex%2FCoinGecko","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftosunthex%2FCoinGecko/lists"}