<!--
{
  "availability" : [
    "Search Ads: 5.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple_Ads",
  "identifier" : "/documentation/apple_ads/Get-a-List-of-Geo-Locations",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Apple Ads"
    ],
    "preciseIdentifier" : "rest:apple_ads:post:v5-search-geo"
  },
  "title" : "Get a List of Geo Locations"
}
-->

# Get a List of Geo Locations

Gets geolocation details using a geoidentifier.

## Discussion

Use a geo `id` in the request payload to return a corresponding `displayName` and geolocation.

### Payload Example: Get a list of geolocations

**Request:**

```
POST https://api.searchads.apple.com/api/v5/search/geo

[
  {
    "id": "US|CA|Cupertino",
    "entity": "locality"
  }
]
```

**Response:**

```json
{
  "id": "US||CA|Cupertino",
  "entity": "locality",
  "displayName": "Cupertino, California, United States",
  "countryOrRegion”: "US",
  "adminArea”: "CA",
  "locality": "Cupertino"
}
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)