Skip to content

Anyside-Api/Anyside-Python-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Anyside Python API

Welcome to the Anyside Python API!
Node.js API

In order to use the Anyside API you will need an API key. You can get your API key by creating an account on anyside.com.

Installation

To install the Python API and get started you can simply pip install Anyside into your project.

$ pip install Anyside

Query Domain

When making a request must pass a anyside domain name.

Response will contain wallest connected with anyside

from anyside import Anyside

anyside = Anyside(api_key='YOUR API KEY')

domain = anyside.query_domain(domain="QUERY DOMAIN NAME Eg. John.any")
print(domain)

"""
#Response Example:
{'Bitcoin': [{'address': '0xBTC-SOMESTUFF', 'name': 'Bitcoin'}],
 'Solana': [{'address': '0x...', 'name': 'Solana'}]}
"""

Wallet lookup

When making a request must pass a vaild wallet address.

Response will contain anyside domain

from anyside import Anyside

anyside = Anyside(api_key='YOUR API KEY')

lookupWallet = anyside.lookup_wallet(wallet_address="0xaeA38149566430Anyside7321B04Anyside")
print(lookupWallet)

"""
#Response Example:
{'domain': 'John.any'}
"""

Please subscribe on Anyside to receive project updates. You can aslo follow us on Twitter and Discord.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages