Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nixonjoshua98/dexscreener
Python API wrapper for dexscreener.com
https://github.com/nixonjoshua98/dexscreener
api cryptocurrency dexscreener python
Last synced: about 12 hours ago
JSON representation
Python API wrapper for dexscreener.com
- Host: GitHub
- URL: https://github.com/nixonjoshua98/dexscreener
- Owner: nixonjoshua98
- License: mit
- Created: 2022-01-19T17:34:34.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-22T18:43:02.000Z (about 2 months ago)
- Last Synced: 2025-01-01T08:01:08.450Z (8 days ago)
- Topics: api, cryptocurrency, dexscreener, python
- Language: Python
- Homepage: https://docs.dexscreener.com/api/reference
- Size: 38.1 KB
- Stars: 118
- Watchers: 6
- Forks: 26
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# API Wrapper for [Dexscreener.com](https://docs.dexscreener.com/)
###### Pull requests GREATLY encouraged!
[![Downloads](https://static.pepy.tech/badge/dexscreener/week)](https://pepy.tech/project/dexscreener)
[![Downloads](https://static.pepy.tech/badge/dexscreener/month)](https://pepy.tech/project/dexscreener)
[![Downloads](https://pepy.tech/badge/dexscreener)](https://pepy.tech/project/dexscreener)# Quick Start
```python
from dexscreener import DexscreenerClientclient = DexscreenerClient()
pair = client.get_token_pair("harmony", "0xcd818813f038a4d1a27c84d24d74bbc21551fa83")
pairs = client.get_token_pairs("0x2170Ed0880ac9A755fd29B2688956BD959F933F8")
search = client.search_pairs("WBTC")
```