GET
/
v1
/
articles
List articles
curl --request GET \
  --url https://api.hofj.com/v1/articles \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "title": "<string>",
      "slug": "<string>",
      "publishedAt": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "coverUrl": "<string>",
      "tagIds": [
        "<string>"
      ]
    }
  ],
  "meta": {
    "nextCursor": "<string>"
  }
}

Authorizations

Authorization
string
header
default:dev-internal-api-key
required

Use Authorization: Bearer <access_token> from POST /v1/oauth/token, or Authorization: Bearer <api_key>. Dev-only example key (do not use in production): see repository README.

Query Parameters

limit
integer
default:25
Required range: 1 <= x <= 100
cursor
string
channelIds
string

Categories only: comma-separated distribution channel ids (intersected with client allowlist). Ignored for destinations, venues, pages, articles.

brand
string

Brand or domain for tenant channel routing (matches channel name or domainUrl).

locale
string

Response

OK

data
object[]
meta
object