Skip to main content
GET
/
api
/
v3
/
sites
/
{site_uuid}
/
transactions
Get all transactions
curl --request GET \
  --url https://app.plugchoice.com/api/v3/sites/{site_uuid}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 1,
      "charger_id": 15,
      "charger_connector_id": 4,
      "reservation_id": 8760,
      "id_tag": "BZLF2364",
      "meter_start": 36374,
      "meter_stop": 37093,
      "total_kwh": "0.72",
      "start_cost": "0.0000",
      "kwh_cost": "0.0000",
      "total_kwh_cost": "0.0000",
      "total_cost": "0.00",
      "started_at": "2025-10-21T02:23:29.000000Z",
      "stopped_at": "2025-10-30T22:48:55.000000Z",
      "stop_reason": "Remote",
      "created_at": "2025-11-19T15:28:22.000000Z",
      "updated_at": "2025-11-19T15:28:22.000000Z"
    },
    {
      "id": 2,
      "charger_id": 16,
      "charger_connector_id": 5,
      "reservation_id": 7160,
      "id_tag": "UFUI7638",
      "meter_start": 29420,
      "meter_stop": 39410,
      "total_kwh": "9.99",
      "start_cost": "0.0000",
      "kwh_cost": "0.0000",
      "total_kwh_cost": "0.0000",
      "total_cost": "0.00",
      "started_at": "2025-11-14T18:16:16.000000Z",
      "stopped_at": "2025-11-19T07:32:20.000000Z",
      "stop_reason": "PowerLoss",
      "created_at": "2025-11-19T15:28:22.000000Z",
      "updated_at": "2025-11-19T15:28:22.000000Z"
    }
  ],
  "links": {
    "first": "/?page=1",
    "last": null,
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "current_page_url": "/?page=1",
    "from": 1,
    "path": "/",
    "per_page": 25,
    "to": 2
  }
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

site_uuid
string
required

Response

200 - application/json
data
object[]
Example:
[
{
"id": 1,
"charger_id": 15,
"charger_connector_id": 4,
"reservation_id": 8760,
"id_tag": "BZLF2364",
"meter_start": 36374,
"meter_stop": 37093,
"total_kwh": "0.72",
"start_cost": "0.0000",
"kwh_cost": "0.0000",
"total_kwh_cost": "0.0000",
"total_cost": "0.00",
"started_at": "2025-10-21T02:23:29.000000Z",
"stopped_at": "2025-10-30T22:48:55.000000Z",
"stop_reason": "Remote",
"created_at": "2025-11-19T15:28:22.000000Z",
"updated_at": "2025-11-19T15:28:22.000000Z"
},
{
"id": 2,
"charger_id": 16,
"charger_connector_id": 5,
"reservation_id": 7160,
"id_tag": "UFUI7638",
"meter_start": 29420,
"meter_stop": 39410,
"total_kwh": "9.99",
"start_cost": "0.0000",
"kwh_cost": "0.0000",
"total_kwh_cost": "0.0000",
"total_cost": "0.00",
"started_at": "2025-11-14T18:16:16.000000Z",
"stopped_at": "2025-11-19T07:32:20.000000Z",
"stop_reason": "PowerLoss",
"created_at": "2025-11-19T15:28:22.000000Z",
"updated_at": "2025-11-19T15:28:22.000000Z"
}
]
meta
object