Complete API reference for integrating Bitcoin Maps
Authenticate with Bitcoin Maps API using your API key or HandCash account.
curl -X GET "https://api.bitcoin-maps.com/v1/user/profile" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
Include your API key in the Authorization header for all requests.
Use HandCash OAuth for user authentication and payments.
npm install @bitcoin-maps/sdk
import { BitcoinMaps } from '@bitcoin-maps/sdk';
const maps = new BitcoinMaps({
apiKey: 'your-api-key'
});
const mapData = await maps.getMap('map_id');pip install bitcoin-maps
from bitcoin_maps import BitcoinMaps
client = BitcoinMaps(api_key='your-api-key')
map_data = client.get_map('map_id')