API usage statistics
This page explains how to retrieve Account API usage statistics. You can use this information to stay within LinkedIn limits for your account.
We provide statistics as an array of all actions executed during a specific period. To access it, make a GET
request to the following endpoint with 2 parameters:
GET https://api.linkedapi.io/account/stats/actions?start={}&end={}
start
– timestamp from which the statistics will be retrieved.end
– timestamp up to which the statistics will be retrieved.
The difference between
start
and end
must not exceed 30 days.In response, you receive an array of actions executed during the specified period:
{
"success": true,
"result": [
{
"actionType": "st.openCompanyPage",
"success": true,
"time": "2023-01-02T12:30:00Z"
},
{
"actionType": "st.sendMessage",
"success": false,
"time": "2023-01-03T12:30:00Z"
},
{
"actionType": "nv.retrieveCompanyEmployees",
"success": true,
"time": "2023-01-04T12:30:00Z"
},
{
"actionType": "st.sendConnectionRequest",
"success": true,
"time": "2023-01-07T12:30:00Z"
}
...
]
}
In case of an unsuccessful request, you'll receive one of the common errors.