Quickstart

Get your first geo API key in minutes.

APISwaps sells working API keys for Google Maps Platform, Amazon Location Service, and Azure Maps. You fund a balance, buy a key ($10 one-time), and our team registers and delivers it to your dashboard. You then call the provider's native endpoints directly — no proxy, no SDK changes.

Step 1 — Create an account

Register and verify your email.

Step 2 — Refill your balance

Go to Settings → Credits and add funds via card (Stripe). Every refill generates an invoice. Minimum deposit: $10.

Step 3 — Choose a service

Browse /services and pick the platform and service tier you need (e.g. Google Geocoding, $6.00 per 1,000 requests).

Step 4 — Buy a key

Click Buy key on the service page. There is a one-time $10 key issuance fee per key. Usage is then billed per-request from your balance.

Step 5 — Receive and use your key

Our team registers the key with the provider. You will see it in your dashboard, usually within a few hours. Copy the key and call the provider's endpoint directly:

bash
curl "https://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&key=YOUR_KEY"

Example response:

json
{  "results": [    {      "formatted_address": "1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA",      "geometry": {        "location": { "lat": 37.4224764, "lng": -122.0842499 }      },      "place_id": "ChIJ2eUgeAK6j4ARbn5u_wAGqWA"    }  ],  "status": "OK"}
Replace YOUR_KEY with the key from your dashboard. Request format, parameters, and error codes follow the official provider documentation — see the Service catalog for links.

Next steps