Get Charging Spot In Use for a charging station

I’m looking for an example API request to retrieve data from a single charging station to see, the station is in use.
Currently I use a request like:
https://api.openchargemap.io/v3/poi/?output=json&key=&chargepointid=52857
But which property is showing me, the station is currently in use?
I see something like:
“StatusType”: {
“IsOperational”: true,
“IsUserSelectable”: true,
“ID”: 50,
“Title”: “Operational”
}
and a lot more.
What means ‘IsUserSelectable’? Is this the current state? Can I recharge my car if IsUserSelectable = true?

You are seeing the expanded StatusType details for the ‘Operational’ status. This just means the last person who edited the data it said the equipment was working.

IsUserSelectable means it’s a status type that a user could provide. Only an automated system would provide certain status types (like live status etc).

We do not have access to the live operational status of any charging networks currently but if we did the status might be set to something like StatusTypeId 20, Currently In Use

  "StatusTypes": [
    {
      "IsOperational": null,
      "IsUserSelectable": true,
      "ID": 0,
      "Title": "Unknown"
    },
    {
      "IsOperational": true,
      "IsUserSelectable": false,
      "ID": 10,
      "Title": "Currently Available (Automated Status)"
    },
    {
      "IsOperational": true,
      "IsUserSelectable": false,
      "ID": 20,
      "Title": "Currently In Use (Automated Status)"
    },
    {
      "IsOperational": true,
      "IsUserSelectable": true,
      "ID": 30,
      "Title": "Temporarily Unavailable"
    },
    {
      "IsOperational": true,
      "IsUserSelectable": true,
      "ID": 50,
      "Title": "Operational"
    },
    {
      "IsOperational": true,
      "IsUserSelectable": true,
      "ID": 75,
      "Title": "Partly Operational (Mixed)"
    },
    {
      "IsOperational": false,
      "IsUserSelectable": true,
      "ID": 100,
      "Title": "Not Operational"
    },
    {
      "IsOperational": false,
      "IsUserSelectable": true,
      "ID": 150,
      "Title": "Planned For Future Date"
    },
    {
      "IsOperational": false,
      "IsUserSelectable": true,
      "ID": 200,
      "Title": "Removed (Decommissioned)"
    },
    {
      "IsOperational": false,
      "IsUserSelectable": true,
      "ID": 210,
      "Title": "Removed (Duplicate Listing)"
    }
  ],