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
  • Document library
    • Fetch node
      GET
  • Notifications
    • Create notification
      POST
  1. News

Fetch news publications for userlist

Deprecated
GET
/agent/integration/api/v1/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

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Query Params

Request Code Samples

Shell
HTTP
Request Request Example
Shell
HTTP
curl --location '/agent/integration/api/v1/user-lists//publications?p=undefined&amount=undefined' \
--header 'Authorization: Bearer <token>'

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