Get all authors
The “Get all authors” Api return the blog authors for a given location ID
GET
Get all authors
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.
The “Get all authors” Api return the blog authors for a given location ID
curl --request GET \
--url https://services.leadconnectorhq.com/blogs/authors \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://services.leadconnectorhq.com/blogs/authors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/blogs/authors"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"authors": [
{
"locationId": "<string>",
"name": "<string>",
"description": "<string>",
"imageUrl": "<string>",
"imageAltText": "<string>",
"socials": [
"<string>"
],
"originId": "<string>",
"canonicalLink": "<string>"
}
]
}{
"statusCode": 422,
"message": [
"Unprocessable Entity"
],
"error": "Unprocessable Entity"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response
Array of authors
Show child attributes
Was this page helpful?
curl --request GET \
--url https://services.leadconnectorhq.com/blogs/authors \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://services.leadconnectorhq.com/blogs/authors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/blogs/authors"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"authors": [
{
"locationId": "<string>",
"name": "<string>",
"description": "<string>",
"imageUrl": "<string>",
"imageAltText": "<string>",
"socials": [
"<string>"
],
"originId": "<string>",
"canonicalLink": "<string>"
}
]
}{
"statusCode": 422,
"message": [
"Unprocessable Entity"
],
"error": "Unprocessable Entity"
}