Skip to content
Ordinal
Esc
↑↓navigate↵open⌘Jpreview

Search Instagram locations

Search for locations to tag in Instagram posts. Requires at least one Instagram profile connected to the workspace.

GET/instagram/locations
Authorization
AuthorizationBearer token · headerrequired

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

Query parameters
querystringrequired

Search query for location name

min length 1
Responses
200

List of matching locations

locationsobject[]
Show properties
Array of object
pageIdstring

Facebook Page ID - use this as the location identifier when creating or updating posts

namestring

Display name of the location

addressobject
Show properties
citystring
statestring
countrystring
streetstring
zipstring
coordinatesobject
Show properties
latitudenumber
longitudenumber
profileImageUrlstring | null

Profile image URL of the location page

linkstring

Facebook Page URL

isVerifiedboolean

Whether the location page is verified

400

Bad Request - Invalid input parameters

codestring
messagestring
dataobject
Show properties
errorsobject
401

Unauthorized - Missing or invalid API key

codestring
messagestring
Try it
Server
Authorization
Parameters
Request
curl -X GET 'https://app.tryordinal.com/api/v1/instagram/locations?query=Central%20Park' \
  -H 'Authorization: Bearer YOUR_TOKEN'
Response
{
  "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
    }
  ]
}