Skip to main content
GET
/
learn
/
learning-guides
curl -X GET 'https://api.wealthyhood.com/learn/learning-guides' \
  -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
    }
  ]
}
Returns the metadata required to render the Learn screen’s Learning Guides shelf. Cached for 30 minutes.

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/learning-guides' \
  -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
    }
  ]
}

Response fields

data
LearningGuideSummary[]
required
Ordered list of learning guides.

Authorizations

Authorization
string
header
required

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

Response

Catalogue of learning guides.

data
object[]
required