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": "2026-01-07T14:29:14.000000Z",
      "stopped_at": "2026-01-23T07:53:27.000000Z",
      "stop_reason": "Other",
      "created_at": "2026-02-06T14:49:41.000000Z",
      "updated_at": "2026-02-06T14:49:41.000000Z",
      "charger": {
        "uuid": "665a39c0-48af-31f1-a546-aa4f41372488",
        "identity": "b9567dd8-446c-3a6f-8f1a-54673f212a38",
        "reference": null
      },
      "connector": {
        "connector_id": 1
      }
    },
    {
      "id": 2,
      "charger_id": 2,
      "charger_connector_id": 2,
      "reservation_id": 2351,
      "id_tag": "OQIT3805",
      "meter_start": 41638,
      "meter_stop": 48079,
      "total_kwh": "6.00",
      "started_at": "2026-01-28T03:48:14.000000Z",
      "stopped_at": "2026-01-29T14:56:12.000000Z",
      "stop_reason": "PowerLoss",
      "created_at": "2026-02-06T14:49:41.000000Z",
      "updated_at": "2026-02-06T14:49:41.000000Z",
      "charger": {
        "uuid": "8529678e-de6b-32f2-9f70-231a0d681563",
        "identity": "3a87aacf-b9fa-3196-a711-8910cad3c293",
        "reference": null
      },
      "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": "2026-01-07T14:29:14.000000Z",
"stopped_at": "2026-01-23T07:53:27.000000Z",
"stop_reason": "Other",
"created_at": "2026-02-06T14:49:41.000000Z",
"updated_at": "2026-02-06T14:49:41.000000Z",
"charger": {
"uuid": "665a39c0-48af-31f1-a546-aa4f41372488",
"identity": "b9567dd8-446c-3a6f-8f1a-54673f212a38",
"reference": null
},
"connector": { "connector_id": 1 }
},
{
"id": 2,
"charger_id": 2,
"charger_connector_id": 2,
"reservation_id": 2351,
"id_tag": "OQIT3805",
"meter_start": 41638,
"meter_stop": 48079,
"total_kwh": "6.00",
"started_at": "2026-01-28T03:48:14.000000Z",
"stopped_at": "2026-01-29T14:56:12.000000Z",
"stop_reason": "PowerLoss",
"created_at": "2026-02-06T14:49:41.000000Z",
"updated_at": "2026-02-06T14:49:41.000000Z",
"charger": {
"uuid": "8529678e-de6b-32f2-9f70-231a0d681563",
"identity": "3a87aacf-b9fa-3196-a711-8910cad3c293",
"reference": null
},
"connector": { "connector_id": 1 }
}
]