Skip to content

Get data availability date

Request

Returns the latest date up to which data is fully available for the filtered locations. Determines availability by checking connected listing data delays across Google, Facebook, and other directories. Returns null if no connected listings exist.

Query
filterCategoryany

Filter strategy to use for scoping locations

Enum:"location""business""labels""location-groups"
locationIdsany

Comma-separated location IDs (used when filterCategory=location)

businessIdsany

Comma-separated business IDs (used when filterCategory=business)

labelsany

Label names (used when filterCategory=labels)

locationGroupIdsany

Location group IDs (used when filterCategory=location-groups)

excludedLocationIdsany

Comma-separated location IDs to exclude from results

excludedBusinessIdsany

Comma-separated business IDs to exclude from results

excludedLabelsany

Label names to exclude from results

excludedLocationGroupIdsany

Location group IDs to exclude from results

Headers
X-Uberall-User-Featuresanyrequired
curl -i -X GET \
  'https://uberall.com/api/dashboard/data-availability?filterCategory=location&locationIds=%7BlocationIds%7D&businessIds=%7BbusinessIds%7D&labels=%7Blabels%7D&locationGroupIds=%7BlocationGroupIds%7D&excludedLocationIds=%7BexcludedLocationIds%7D&excludedBusinessIds=%7BexcludedBusinessIds%7D&excludedLabels=%7BexcludedLabels%7D&excludedLocationGroupIds=%7BexcludedLocationGroupIds%7D' \
  -H 'X-Uberall-User-Features: {X-Uberall-User-Features}'

Responses

Data availability date

Body*/*
statusanyrequired

Response status

Example:"SUCCESS"
responseobjectrequired

Response payload

Response
{
  "status": "SUCCESS",
  "response": {
    "dataFullyAvailableUntil": "2025-03-20",
    "dataAvailableFrom": null,
    "connectedDirectoriesDelayDay": [
      {
        "type": null,
        "delayDay": null
      }
    ]
  }
}