Skip to main content
GET
/
instagram
/
locations
/
search
Search Instagram locations
curl --request GET \
  --url https://app.tryordinal.com/api/v1/instagram/locations/search \
  --header 'Authorization: Bearer <token>'
{
  "locations": [
    {
      "pageId": "123456789",
      "name": "Central Park",
      "address": {
        "city": "New York",
        "state": "NY",
        "country": "United States",
        "street": "Central Park",
        "zip": "10024"
      },
      "coordinates": {
        "latitude": 40.7829,
        "longitude": -73.9654
      },
      "profileImageUrl": "https://example.com/central-park.jpg",
      "link": "https://www.facebook.com/centralparknyc",
      "isVerified": true
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.tryordinal.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication. Generate an API key from your workspace settings.

Query Parameters

query
string
required

Search query for location name

Minimum string length: 1

Response

List of matching locations

locations
object[]