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"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.wealthyhood.com/llms.txt

Use this file to discover all available pages before exploring further.

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.

Headers

x-user-id
string
required

MongoDB identifier of the Wealthyhood user. Used to determine the language preference for localized content.

Pattern: ^[a-f0-9]{24}$

Response

Latest Learn news items.

data
object[]
required