<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/GeoSearchPagination",
  "metadataVersion" : "0.1.0",
  "role" : "Object",
  "symbol" : {
    "kind" : "Object",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "data:apple-ads-platform-api:GeoSearchPagination"
  },
  "title" : "GeoSearchPagination"
}
-->

# GeoSearchPagination

Pagination parameters for geo location search requests and responses.

```
object GeoSearchPagination
```

## Discussion

The `GeoSearchPagination` object controls and reports offset-based pagination through geo location search results.

When used in a [`GeoSearchPostRequest`](/documentation/Apple-Ads-Platform-API/GeoSearchPostRequest) body, set `offset` and `pageSize` to retrieve a specific page of results. The GET endpoint (`GET /v1/search/geo` ([`Search Geo Locations`](/documentation/Apple-Ads-Platform-API/Searches-for-a-list-of-geo-locations))) accepts `offset` and `pageSize` as query parameters instead of a request body. In both cases the response `pagination` object includes `totalCount`, enabling callers to calculate the total number of pages available.

The default `pageSize` of 20 is sufficient for most targeted lookups. Increase it for searches expected to return many matching locations. To retrieve the next page, increment `offset` by `pageSize`.

### Example

```json
{
  "totalCount": 87,
  "offset": 20,
  "pageSize": 20
}
```

---

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)