Official Python SDK for the Noesis on-chain intelligence API — Solana token & wallet analytics.
Project description
Install
pip install noesis-api
Quick start
from noesis import Noesis
client = Noesis(api_key="se_...")
# Token preview
preview = client.token.preview("<MINT>")
print(preview)
# Wallet profile
wallet = client.wallet.profile("<ADDRESS>")
print(wallet)
# Bundle detection
bundles = client.token.bundles("<MINT>")
print(bundles)
Get an API key at noesisapi.dev/keys.
Live streams
from noesis import Noesis
client = Noesis(api_key="se_...")
for token in client.streams.pumpfun_new_tokens():
print("New token:", token)
Available streams: pumpfun_new_tokens, pumpfun_migrations, raydium_new_pools, meteora_new_pools.
API
Token
client.token.preview(mint, chain="sol")
client.token.scan(mint, chain="sol")
client.token.top_holders(mint, chain="sol")
client.token.bundles(mint)
client.token.fresh_wallets(mint)
client.token.dev_profile(mint)
client.token.best_traders(mint, chain="sol")
client.token.early_buyers(mint, hours=1)
Wallet
client.wallet.profile(address, chain="sol")
client.wallet.history(address, chain="sol")
client.wallet.connections(address)
client.wallet.batch_identity(addresses)
client.wallet.cross_holders(tokens)
client.wallet.cross_traders(tokens)
Chain
client.chain.status()
client.chain.fees()
client.chain.account(address)
client.chain.accounts_batch(addresses)
Error handling
from noesis import Noesis, NoesisError
client = Noesis(api_key="se_...")
try:
client.token.preview("<MINT>")
except NoesisError as e:
print(e.status, e.message, e.details)
Context manager
with Noesis(api_key="se_...") as client:
data = client.token.preview("<MINT>")
License
MIT — see LICENSE.
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
noesis_api-0.1.0.tar.gz
(3.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file noesis_api-0.1.0.tar.gz.
File metadata
- Download URL: noesis_api-0.1.0.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0404772e095364643e40a888c43cb3f971a424c3162cb3bccf8926411ae8e0a
|
|
| MD5 |
c8c80378827dd4f29aaab7a61edf39c4
|
|
| BLAKE2b-256 |
31eb16c06c9bc32db995ffcc1f3074d8790a59031a1c4b6a8adf92fe126b1f3a
|
File details
Details for the file noesis_api-0.1.0-py3-none-any.whl.
File metadata
- Download URL: noesis_api-0.1.0-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ff7e648f38b42199380b98ee80ac9f5dc9b617f286f160bc6e87e800cffad2f
|
|
| MD5 |
228914cfcad6abf62a4d5750b12d8dc8
|
|
| BLAKE2b-256 |
979fb4086e59218247e81fb20959cf79e50f13759029d4c50cd7738975924c74
|