TravelCenters of America · Example Payload

Travelcenters Of America Get Parking Availability Example

Travel CentersTruck ServiceRetailFuelLocationsTruckingFleet ManagementFortune 500

Travelcenters Of America Get Parking Availability Example is an example object payload from TravelCenters of America, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.accessta.com/v1/parking/availability?location_id=loc_001",
    "headers": {
      "Authorization": "Bearer YOUR_API_TOKEN"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": [
        {
          "location_id": "loc_001",
          "location_name": "TA Chicago",
          "total_spaces": 120,
          "available_spaces": 47,
          "occupied_spaces": 73,
          "timestamp": "2026-05-03T10:15:00Z"
        }
      ]
    }
  }
}