Skip to main content
GET
/
api
/
v3
/
sites
/
{site_uuid}
/
transactions
List transactions
curl --request GET \
  --url https://app.plugchoice.com/api/v3/sites/{site_uuid}/transactions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "limit": 1,
  "filter": []
}
'
{
  "data": [
    {
      "id": 1,
      "charger_id": 1,
      "charger_connector_id": 1,
      "reservation_id": 7432,
      "id_tag": "DLJN5625",
      "meter_start": 29317,
      "meter_stop": 37253,
      "total_kwh": "7.00",
      "started_at": "2025-12-11T00:54:06.000000Z",
      "stopped_at": "2025-12-26T18:18:19.000000Z",
      "stop_reason": "Other",
      "created_at": "2026-01-10T01:14:33.000000Z",
      "updated_at": "2026-01-10T01:14:33.000000Z",
      "charger": {
        "uuid": "665a39c0-48af-31f1-a546-aa4f41372488",
        "identity": "b9567dd8-446c-3a6f-8f1a-54673f212a38"
      },
      "connector": {
        "connector_id": 1
      }
    },
    {
      "id": 2,
      "charger_id": 2,
      "charger_connector_id": 2,
      "reservation_id": 8203,
      "id_tag": "WTNN0574",
      "meter_start": 30387,
      "meter_stop": null,
      "total_kwh": "0.00",
      "started_at": "2026-01-09T09:04:50.000000Z",
      "stopped_at": null,
      "stop_reason": null,
      "created_at": "2026-01-10T01:14:33.000000Z",
      "updated_at": "2026-01-10T01:14:33.000000Z",
      "charger": {
        "uuid": "ae418b3a-69fc-38d5-a5ed-bba4255aaea9",
        "identity": "29635f5e-45e3-3a71-90b8-942cfd8ffe97"
      },
      "connector": {
        "connector_id": 1
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

site_uuid
string
required

Body

application/json
limit
integer | null

Must be at least 1. Must not be greater than 10000.

Example:

1

filter
object
Example:
[]

Response

200 - application/json
data
object[]
Example:
[
{
"id": 1,
"charger_id": 1,
"charger_connector_id": 1,
"reservation_id": 7432,
"id_tag": "DLJN5625",
"meter_start": 29317,
"meter_stop": 37253,
"total_kwh": "7.00",
"started_at": "2025-12-11T00:54:06.000000Z",
"stopped_at": "2025-12-26T18:18:19.000000Z",
"stop_reason": "Other",
"created_at": "2026-01-10T01:14:33.000000Z",
"updated_at": "2026-01-10T01:14:33.000000Z",
"charger": {
"uuid": "665a39c0-48af-31f1-a546-aa4f41372488",
"identity": "b9567dd8-446c-3a6f-8f1a-54673f212a38"
},
"connector": { "connector_id": 1 }
},
{
"id": 2,
"charger_id": 2,
"charger_connector_id": 2,
"reservation_id": 8203,
"id_tag": "WTNN0574",
"meter_start": 30387,
"meter_stop": null,
"total_kwh": "0.00",
"started_at": "2026-01-09T09:04:50.000000Z",
"stopped_at": null,
"stop_reason": null,
"created_at": "2026-01-10T01:14:33.000000Z",
"updated_at": "2026-01-10T01:14:33.000000Z",
"charger": {
"uuid": "ae418b3a-69fc-38d5-a5ed-bba4255aaea9",
"identity": "29635f5e-45e3-3a71-90b8-942cfd8ffe97"
},
"connector": { "connector_id": 1 }
}
]