---
title: "Reverse Geocode US Coordinates API"
slug: reverse-geocode
url: https://apyhub.com/dosvak/service/reverse-geocode
provider: Dosvak LLC
categories: [Geolocation]
tags: [reverse-geocoding, geolocation, map-data, location-lookup, poi]
auth: api_key
---

# Reverse Geocode US Coordinates API 

Convert latitude and longitude into location data, with optional points of interest. Built for map pins, GPS events, and location-aware apps.

## Endpoints

| Method | URL | Description | Atoms |
| --- | --- | --- | --- |
| GET | `https://api.eu.apyhub.com/dosvak/reverse-geocode` | What it does Returns reverse-geocoding results for the provided latitude and longitude coordinates.… | 10 |

## Examples

### Reverse geocode

#### Quickstart

Returns a JSON object containing the resolved location information. The response may include provider-specific fields such as input coordinates, county information, geospatial metadata, and attribution details.

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

#### What you'll get back

Returns a JSON object. The schema does not declare any specific response fields, so the response shape may include provider-specific properties.

```json
{
  "input": {
    "lat": 34.0522,
    "lon": -118.2437
  },
  "county": {
    "county_fips": "06037",
    "county_name": "Los Angeles County",
    "state_name": "California"
  },
  "geospatial_ready": false,
  "attribution": []
}
```

## About

## What it does
Reverse Geocoding turns a latitude and longitude into a location lookup you can use in your app. Send `lat` and `lon`, and optionally set `include_poi` to include points of interest in the response.

Use Reverse Geocoding when you need to label map pins, show a user’s current area, or attach a human-readable place to a GPS event. It is a fit for mobile apps, fleet tracking dashboards, delivery workflows, and map-based analytics where coordinates alone are not enough.

The endpoint returns a JSON object containing the resolved location information. The response may include provider-specific location details and should be treated as structured location data rather than a fixed schema.

Keep your own coordinate checks close to the request: `lat` must be between -90 and 90, and `lon` between -180 and 180. That makes Reverse Geocoding useful as a lightweight backend step before storing, displaying, or enriching location records.

## 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-geocode
