Skip to main content
GET
/
blogs
/
authors
Get all authors
curl --request GET \
  --url https://services.leadconnectorhq.com/blogs/authors \
  --header 'Authorization: Bearer <token>'
{
  "authors": [
    {
      "locationId": "<string>",
      "name": "<string>",
      "description": "<string>",
      "imageUrl": "<string>",
      "imageAltText": "<string>",
      "socials": [
        "<string>"
      ],
      "originId": "<string>",
      "canonicalLink": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
number
required
offset
number
required
searchTerm
string
required

Response

Successful response

authors
object[]
required

Array of authors

Last modified on March 4, 2026