1. News
Spencer Integration API
  • Spencer Integration API
  • Identity
    • Request access token
      POST
  • News
    • Fetch news publications
      GET
    • Fetch news publications for userlist
      GET
    • Create news draft
      POST
  • Users
    • Create user
      POST
    • Fetch user
      GET
    • Update user
      PUT
    • Delete user
      DELETE
    • Check if user exists
      HEAD
    • Add user profile picture
      POST
    • Create user tag
      POST
    • Update user tag
      PUT
    • Check if user tag exists
      HEAD
  1. News

Fetch news publications for userlist

Deprecated
GET
/user-lists/{userListId}/publications
Fetches news publications for a given user list.
⚠️ This endpoint is deprecated. Please switch to more flexible the "Fetch news publications" endpoint.

Request

Path Params

Query Params

Responses

🟢200
application/json
OK
Body

Example
{
    "data": [
        {
            "id": 1,
            "type": "article",
            "publish_date": "2026-02-03T14:17:00+00:00",
            "news_items": [
                {
                    "title": "string",
                    "summary": "string",
                    "content": "string",
                    "feature_media": {
                        "name": "string",
                        "extension": "string",
                        "mime_type": "string",
                        "file_size": "string",
                        "aspect_ratio": "string",
                        "signed_url": "string"
                    },
                    "feature_video": {
                        "hls_url": "string"
                    },
                    "locale": "string"
                }
            ]
        }
    ],
    "_links": {
        "self": "string",
        "next": "string",
        "prev": "string"
    }
}
🟠401401.unauthorized
🟠403403.forbidden
🟠404404.notFound
🔴500500.internalServerError
Previous
Fetch news publications
Next
Create news draft
Built with