Welcome to the Atomic Wallet API! This API allows developers to integrate with Atomic Wallet, a secure, decentralized, and non-custodial cryptocurrency wallet. With this API, you can access various features and services offered by Atomic Wallet programmatically.
Before you begin, make sure you have the following:
- Atomic Wallet installed on your device.
- An Atomic Wallet account.
To use this API, you'll need an API key. You can obtain your API key by following these steps:
- Open Atomic Wallet on your device.
- Navigate to the Settings section.
- Select the API tab.
- Generate a new API key or use an existing one.
- Copy your API key and keep it secure.
For detailed information on available endpoints, request parameters, and response formats, please refer to our API documentation.
To authenticate your requests, add your API key to the Authorization
header of your HTTP requests:
Authorization: Bearer YOUR_API_KEY
You can retrieve your Atomic Wallet account information using the following endpoint:
GET https://api.atomicwallet.io/v1/account
To generate a new cryptocurrency wallet address, use the following endpoint:
POST https://api.atomicwallet.io/v1/wallets/new-address
Send cryptocurrency from your Atomic Wallet using this endpoint:
POST https://api.atomicwallet.io/v1/send
Here's an example of how to use the Atomic Wallet API in Python:
import requests
# Set your API key
api_key = 'YOUR_API_KEY'
# Define the API endpoint
url = 'https://api.atomicwallet.io/v1/account'
# Set the headers with your API key
headers = {
'Authorization': f'Bearer {api_key}'
}
# Send the GET request
response = requests.get(url, headers=headers)
# Print the response
print(response.json())
If you have any questions or need assistance, please don't hesitate to contact our support team at support@atomicwallet.io.
This API is provided under the MIT License.