Skip to main content
GET
/
learn
/
learning-guides
/
{id}
curl -X GET 'https://api.wealthyhood.com/learn/learning-guides/64f0c51e7fb3fc001234abcd' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "data": {
    "key": "investing-basics",
    "contentType": "learningGuide",
    "id": "64f0c51e7fb3fc001234abcd",
    "title": "Investing basics",
    "description": "Start your investing journey with the essentials.",
    "backgroundColor": "#F0F4FF",
    "guideIconURL": "https://images.ctfassets.net/.../guide-icon.png",
    "mobileCoverImageURL": "https://images.ctfassets.net/.../mobile-cover.png",
    "webCoverImageURL": "https://images.ctfassets.net/.../web-cover.png",
    "slug": "investing-basics",
    "chapterCount": 6,
    "chapters": [
      {
        "title": "Introduction to Investing",
        "body": "<body>...</body>",
        "slug": "introduction"
      }
    ]
  }
}
Retrieve a learning guide and its chapters using the 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
Content entry identifier. Use the id field from the learning guide summary response.

Example request

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

Example response

{
  "data": {
    "key": "investing-basics",
    "contentType": "learningGuide",
    "id": "64f0c51e7fb3fc001234abcd",
    "title": "Investing basics",
    "description": "Start your investing journey with the essentials.",
    "backgroundColor": "#F0F4FF",
    "guideIconURL": "https://images.ctfassets.net/.../guide-icon.png",
    "mobileCoverImageURL": "https://images.ctfassets.net/.../mobile-cover.png",
    "webCoverImageURL": "https://images.ctfassets.net/.../web-cover.png",
    "slug": "investing-basics",
    "chapterCount": 6,
    "chapters": [
      {
        "title": "Introduction to Investing",
        "body": "<body>...</body>",
        "slug": "introduction"
      }
    ]
  }
}

Response fields

data
LearningGuideDetail
required
Learning guide detail including all chapters. Extends LearningGuideSummary with chapters[] containing HTML bodies.

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

Learning guide payload resolved by ID.

data
object
required