Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sarnmabad83/atomic-wallet-api-wallet-storage-web-browser-multi-crypto-sdk-multi-coin-storage
This repository offers an API for integrating Atomic Wallet with web browsers and multi-crypto SDKs. It supports secure storage and management of multiple cryptocurrencies and coins, providing a versatile solution for multi-coin storage and wallet interactions.
https://github.com/sarnmabad83/atomic-wallet-api-wallet-storage-web-browser-multi-crypto-sdk-multi-coin-storage
atomic-wallet atomic-wallet-api atomic-wallet-bot bitcoin blockchain cold-wallet cold-wallet-extension cold-wallet-futures cold-wallet-security crypto-wallet cryptocurrencies cryptocurrency ethereum gateway sdk solana wallet wallet-security walletconnect web3
Last synced: 3 months ago
JSON representation
This repository offers an API for integrating Atomic Wallet with web browsers and multi-crypto SDKs. It supports secure storage and management of multiple cryptocurrencies and coins, providing a versatile solution for multi-coin storage and wallet interactions.
- Host: GitHub
- URL: https://github.com/sarnmabad83/atomic-wallet-api-wallet-storage-web-browser-multi-crypto-sdk-multi-coin-storage
- Owner: SArnmaBad83
- License: mit
- Created: 2024-08-13T15:33:20.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-16T05:29:35.000Z (5 months ago)
- Last Synced: 2024-10-10T08:21:30.779Z (3 months ago)
- Topics: atomic-wallet, atomic-wallet-api, atomic-wallet-bot, bitcoin, blockchain, cold-wallet, cold-wallet-extension, cold-wallet-futures, cold-wallet-security, crypto-wallet, cryptocurrencies, cryptocurrency, ethereum, gateway, sdk, solana, wallet, wallet-security, walletconnect, web3
- Language: C++
- Size: 618 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
---
# Atomic Wallet API
## Introduction
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.
## Getting Started
### Prerequisites
Before you begin, make sure you have the following:
- [Atomic Wallet](https://atomicwallet.io/) installed on your device.
- An Atomic Wallet account.### API Key
To use this API, you'll need an API key. You can obtain your API key by following these steps:
1. Open Atomic Wallet on your device.
2. Navigate to the Settings section.
3. Select the API tab.
4. Generate a new API key or use an existing one.
5. Copy your API key and keep it secure.### API Documentation
For detailed information on available endpoints, request parameters, and response formats, please refer to our [API documentation](https://api.atomicwallet.io/docs).
### Authentication
To authenticate your requests, add your API key to the `Authorization` header of your HTTP requests:
```http
Authorization: Bearer YOUR_API_KEY
```## Usage Examples
### Retrieve Account Information
You can retrieve your Atomic Wallet account information using the following endpoint:
```http
GET https://api.atomicwallet.io/v1/account
```### Create a New Wallet Address
To generate a new cryptocurrency wallet address, use the following endpoint:
```http
POST https://api.atomicwallet.io/v1/wallets/new-address
```### Send Cryptocurrency
Send cryptocurrency from your Atomic Wallet using this endpoint:
```http
POST https://api.atomicwallet.io/v1/send
```## Sample Code
Here's an example of how to use the Atomic Wallet API in Python:
```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())
```## Support
If you have any questions or need assistance, please don't hesitate to contact our support team at [[email protected]](mailto:[email protected]).
## License
This API is provided under the [MIT License](LICENSE).
---