Skip to main content
GET
/
learn
/
glossary
curl -X GET 'https://api.wealthyhood.com/learn/glossary' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "data": [
    {
      "key": "compound-interest",
      "contentType": "glossary",
      "createdAt": "2023-08-31T11:00:00.000Z",
      "title": "Compound interest",
      "definitionHTML": "<body><p>The interest you earn on interest.</p></body>"
    }
  ]
}
Provides the Learn screen glossary entries. Responses are 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/glossary' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'

Example response

{
  "data": [
    {
      "key": "compound-interest",
      "contentType": "glossary",
      "createdAt": "2023-08-31T11:00:00.000Z",
      "title": "Compound interest",
      "definitionHTML": "<body><p>The interest you earn on interest.</p></body>"
    }
  ]
}

Response fields

data
GlossaryItem[]
required
Alphabetised list of glossary terms.

Authorizations

Authorization
string
header
required

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

Response

Glossary item collection.

data
object[]
required