Skip to main content
GET
/
learn
/
news
/
{id}
curl -X GET 'https://api.wealthyhood.com/learn/news/64f0c51e7fb3fc001234abcd' \
  -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 full payload for a news article using its Wealthyhood identifier.

Authentication & headers

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

Path parameters

id
string
required
Wealthyhood content entry identifier.

Example request

curl -X GET 'https://api.wealthyhood.com/learn/news/64f0c51e7fb3fc001234abcd' \
  -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
Single news article payload.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Wealthyhood content entry identifier.

Response

News article payload.

data
object
required