Reputation · Example Payload

Reputation Get Locations Example

Example response for GET /v3/locations

Reputation ManagementOnline ReviewsBusiness ListingsSurveysSocial ListeningCompetitive IntelligenceCustomer ExperienceLocal SEO

Reputation Get Locations Example is an example object payload from Reputation, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

descriptionrequestresponse

Example Payload

Raw ↑
{
  "description": "Example response for GET /v3/locations",
  "request": {
    "method": "GET",
    "url": "https://api.reputation.com/v3/locations?offset=0&limit=2",
    "headers": {
      "X-API-KEY": "your_api_key_here",
      "Accept": "application/json"
    }
  },
  "response": {
    "pagination": {
      "offset": 0,
      "limit": 2,
      "next": "https://api.reputation.com/v3/locations?offset=2&limit=2",
      "previous": null
    },
    "locations": [
      {
        "locationID": "loc_123",
        "name": "Acme Corp - Downtown",
        "locationCode": "ACM-DT-001",
        "tenantID": "tenant_456",
        "status": "active",
        "address": {
          "street": "123 Main Street",
          "city": "San Francisco",
          "state": "CA",
          "zip": "94105",
          "country": "US"
        },
        "originalAddress": {
          "street": "123 Main St",
          "city": "San Francisco",
          "state": "California",
          "zip": "94105",
          "country": "United States"
        },
        "phones": [
          {"number": "+14155550100", "type": "main"},
          {"number": "+14155550199", "type": "fax"}
        ],
        "emails": ["downtown@acmecorp.com"],
        "websites": ["https://acmecorp.com/downtown"],
        "businessHours": {
          "monday": {"open": "09:00", "close": "17:00", "closed": false},
          "tuesday": {"open": "09:00", "close": "17:00", "closed": false},
          "wednesday": {"open": "09:00", "close": "17:00", "closed": false},
          "thursday": {"open": "09:00", "close": "17:00", "closed": false},
          "friday": {"open": "09:00", "close": "17:00", "closed": false},
          "saturday": {"open": "10:00", "close": "14:00", "closed": false},
          "sunday": {"open": null, "close": null, "closed": true}
        },
        "categories": ["business_services", "consulting"],
        "socialProfiles": {
          "facebook": "https://facebook.com/acmecorp",
          "twitter": "https://twitter.com/acmecorp"
        }
      },
      {
        "locationID": "loc_124",
        "name": "Acme Corp - Eastside",
        "locationCode": "ACM-ES-001",
        "tenantID": "tenant_456",
        "status": "active",
        "address": {
          "street": "456 Market Avenue",
          "city": "Oakland",
          "state": "CA",
          "zip": "94612",
          "country": "US"
        },
        "phones": [
          {"number": "+15105550200", "type": "main"}
        ],
        "emails": ["eastside@acmecorp.com"],
        "websites": ["https://acmecorp.com/eastside"],
        "businessHours": {
          "monday": {"open": "08:00", "close": "18:00", "closed": false},
          "tuesday": {"open": "08:00", "close": "18:00", "closed": false},
          "wednesday": {"open": "08:00", "close": "18:00", "closed": false},
          "thursday": {"open": "08:00", "close": "18:00", "closed": false},
          "friday": {"open": "08:00", "close": "18:00", "closed": false},
          "saturday": {"open": null, "close": null, "closed": true},
          "sunday": {"open": null, "close": null, "closed": true}
        },
        "categories": ["business_services"],
        "socialProfiles": {}
      }
    ]
  }
}