Get Social Media Statistics
Retrieve analytics data for multiple social media accounts. Provides metrics for the last 7 days with comparison to the previous 7 days.
POST
Get Social Media Statistics
Last modified on March 8, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve analytics data for multiple social media accounts. Provides metrics for the last 7 days with comparison to the previous 7 days.
curl --request POST \
--url https://services.leadconnectorhq.com/social-media-posting/statistics \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"locationId": "<string>",
"accountIds": [
"<string>"
],
"platforms": [
"<string>"
]
}
'const options = {
method: 'POST',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({locationId: '<string>', accountIds: ['<string>'], platforms: ['<string>']})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/statistics', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/social-media-posting/statistics"
payload = {
"locationId": "<string>",
"accountIds": ["<string>"],
"platforms": ["<string>"]
}
headers = {
"Authorization": "<authorization>",
"Version": "<version>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Was this page helpful?
curl --request POST \
--url https://services.leadconnectorhq.com/social-media-posting/statistics \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"locationId": "<string>",
"accountIds": [
"<string>"
],
"platforms": [
"<string>"
]
}
'const options = {
method: 'POST',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({locationId: '<string>', accountIds: ['<string>'], platforms: ['<string>']})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/statistics', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/social-media-posting/statistics"
payload = {
"locationId": "<string>",
"accountIds": ["<string>"],
"platforms": ["<string>"]
}
headers = {
"Authorization": "<authorization>",
"Version": "<version>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)