---
title: Lookup US Address by Coordinates API
slug: reverse-address-lookup
url: https://apyhub.com/dosvak/service/reverse-address-lookup
provider: Dosvak LLC
categories: [Geolocation]
tags: [reverse-geocoding, geolocation, address-lookup, coordinates, maps]
auth: api_key
version: 0.1.0
service_type: sync
endpoints: 1
atoms: 100
mcp: true
---

# Lookup US Address by Coordinates API

Convert latitude and longitude into address data. Built for maps, delivery events, and turning raw coordinates into usable address context.

## Endpoints

| Method | URL | Description | Atoms |
| --- | --- | --- | --- |
| GET | `https://api.eu.apyhub.com/dosvak/reverse-address-lookup` | What it does Looks up an address from geographic coordinates. It accepts lat and lon as query param… | 100 |

## Endpoint reference

### Reverse address lookup

`GET https://api.eu.apyhub.com/dosvak/reverse-address-lookup` · 100 atoms · accepts `application/json` · returns `application/json`

| Parameter | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `lat` | query | number | yes | Lat Example: `37.422`. |
| `lon` | query | number | yes | Lon Example: `-122.0841`. |

#### Quickstart

Look up an address by latitude and longitude.

```bash
curl -X GET "https://api.eu.apyhub.com/dosvak/reverse-address-lookup?lat=37.422&lon=-122.0841" \
  -H "apy-token: $APY_TOKEN"
```

#### What you'll get back

Returns a JSON object containing the input coordinates and the nearest matching address with location details.
```json
{
  "input": {
    "lat": 37.422,
    "lon": -122.0841
  },
  "match": {
    "address_line": "1600 Amphitheatre Pkwy",
    "locality": "Mountain View",
    "country_code": "US"
  }
}
```

## About

## What it does
Reverse Address Lookup turns latitude and longitude into a location lookup result. Send `lat` and `lon` as query parameters, and get back the address data the service can resolve for that point.

Use it when you already have coordinates from a map click, GPS trace, delivery event, or analytics record and need to attach a human-readable location. It fits workflows like marking customer check-ins, enriching trip logs, or converting geospatial events into something your support or operations team can read.

The endpoint is simple on purpose: it only requires `lat` and `lon`, with valid ranges of -90 to 90 for latitude and -180 to 180 for longitude. 

If your application stores coordinates but needs address context for search, display, reporting, or downstream validation, Reverse Address Lookup gives you the conversion step without extra geocoding logic in your own code.

## Usage

Base URL: `https://api.eu.apyhub.com` (default region — see
`GET https://apyhub.com/api/public/regions` for the rest).

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyhub.com/dosvak/service/reverse-address-lookup
