ADAS Grid

Developers

Build with ADAS Grid

Integrate digital addressing into your application with our RESTful API, TypeScript SDK, and comprehensive documentation.

Quick Start

One API call to resolve any address

Pass an ADAS code and get back precise coordinates, country information, and verification status. It is that simple.

request.ts
// Resolve an ADAS code to coordinates
const response = await fetch(
  "https://api.adasgrid.com/v1/resolve/UG-1234-5678",
  {
    headers: {
      "Authorization": "Bearer YOUR_API_KEY",
      "Content-Type": "application/json",
    },
  }
);

const data = await response.json();

Response

Clean, predictable JSON

Every response follows a consistent schema with full type coverage in our TypeScript SDK.

response.json
{
  "code": "UG-1234-5678",
  "country": "UG",
  "country_name": "Uganda",
  "coordinates": {
    "latitude": 0.3476,
    "longitude": 32.5825
  },
  "formatted_address": "Kampala, Central Region",
  "resolution": "3m",
  "created_at": "2025-08-15T10:30:00Z",
  "verified": true
}

Platform

Everything you need to integrate

RESTful API

Clean, predictable endpoints following REST conventions. JSON in, JSON out.

OpenAPI Spec

Full OpenAPI 3.1 specification. Generate clients in any language automatically.

TypeScript SDK

First-class TypeScript support with full type definitions and IntelliSense.

Real-time Geocoding

Convert between ADAS codes and coordinates in under 50ms, globally.

Rate Limits

Generous limits that scale with your plan.

TierRate LimitBurst
Free (unauthenticated)100 requests/minute10 req/s
Business (authenticated)1,000 requests/minute100 req/s
EnterpriseCustomCustom

Start building today

Get your API key in seconds. Free tier includes 100 requests per minute with no credit card required.