Skip to main content
GET
/
learn
/
news
curl -X GET 'https://api.wealthyhood.com/learn/news' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "data": [
    {
      "key": "market-update-2024",
      "contentType": "newsWealthyhub",
      "id": "64f0c51e7fb3fc001234abcd",
      "createdAt": "2024-01-15T10:30:00Z",
      "title": "Market Update: Q1 2024",
      "contentHTML": "<body>...</body>",
      "previewTitleMain": "Market Update",
      "readingTime": "5 min",
      "fullImageURL": "https://cdn.example.com/news/full.jpg",
      "previewImageURL": "https://cdn.example.com/news/preview.jpg",
      "storyImageURL": "https://cdn.example.com/news/story.jpg"
    }
  ]
}
Fetch the latest Learn news articles sourced from the editorial ingest pipeline. Up to 50 items sorted by createdAt descending.

Authentication & headers

Authorization
string
required
Bearer token issued by Auth0. Format: Bearer YOUR_ACCESS_TOKEN and must include the wealthyhood:nbg scope.

Example request

curl -X GET 'https://api.wealthyhood.com/learn/news' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'

Example response

{
  "data": [
    {
      "key": "market-update-2024",
      "contentType": "newsWealthyhub",
      "id": "64f0c51e7fb3fc001234abcd",
      "createdAt": "2024-01-15T10:30:00Z",
      "title": "Market Update: Q1 2024",
      "contentHTML": "<body>...</body>",
      "previewTitleMain": "Market Update",
      "readingTime": "5 min",
      "fullImageURL": "https://cdn.example.com/news/full.jpg",
      "previewImageURL": "https://cdn.example.com/news/preview.jpg",
      "storyImageURL": "https://cdn.example.com/news/story.jpg"
    }
  ]
}

Response fields

data
NewsItem[]
required
List of news articles in reverse chronological order.

Authorizations

Authorization
string
header
required

Auth0-issued access token that includes the wealthyhood:nbg scope.

Response

Latest Learn news items.

data
object[]
required