Practical Money Skills API Reference

Practical Money Skills

Social Impact Content API v1 - Latest

The Content API accepts categories as input and returns the corresponding page content.

Request

query Parameters
category
required
string
The category of the content
index
required
string
The index of the export content
subCategoryLevel1
required
string
The first level sub-category of the content
subCategoryLevel2
required
string
The second level sub-category of the content
subCategoryLevel3
required
string
The third level sub-category of the content

Responses

200 Successful response

Response Schema: application/json
assets Array of objects
Array
url string
Example: "https://www.practicalmoneyskills.com/content/dam/financial-literacy/practical-money-skills/images/non-card/assessing_the_situation.jpg"
category string
Example: "Learn"
content string
Example: "

It can be tempting to jump to conclusions when you are looking to provide care...

"
deprecated string
Enum:"true" "false"
Example: "false"
lang string
Example: "en"
lastModified string
Example: "04/03/2025"
sub_category_level_1 string
Example: "Life Events"
sub_category_level_2 string
Example: "Elder Care"
sub_category_level_3 string
Example: "Assessing the Situation"
sub_category_level_4 string or null
Example: "null"
sub_category_level_5 string or null
Example: "null"
sub_category_level_6 string or null
Example: "null"
title string
Example: "Assessing the Situation"
url string
Example: "https://www.practicalmoneyskills.com/en/learn/life_events/elder_care/assessing_the_situation.html"

400 Bad request

Response Schema: application/json
error string
Example: "Bad request"

401 Unauthorized

Response Schema: application/json
error string
Example: "Unauthorized"

404 Not found

Response Schema: application/json
error string
Example: "Not found"
{
  "url": "https://www.practicalmoneyskills.com/en/learn/life_events/elder_care/assessing_the_situation.html",
  "lang": "en",
  "title": "Assessing the Situation",
  "assets": [
    {
      "url": "https://www.practicalmoneyskills.com/content/dam/financial-literacy/practical-money-skills/images/non-card/assessing_the_situation.jpg"
    }
  ],
  "content": "<p>It can be tempting to jump to conclusions when you are looking to provide care...</p>",
  "category": "Learn",
  "deprecated": "false",
  "lastModified": "04/03/2025",
  "sub_category_level_1": "Life Events",
  "sub_category_level_2": "Elder Care",
  "sub_category_level_3": "Assessing the Situation",
  "sub_category_level_4": "null",
  "sub_category_level_5": "null",
  "sub_category_level_6": "null"
}