# 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<br>required | string<br>The category of the content |
| index<br>required | string<br>The index of the export content |
| subCategoryLevel1<br>required | string<br>The first level sub-category of the content |
| subCategoryLevel2<br>required | string<br>The second level sub-category of the content |
| subCategoryLevel3<br>required | string<br>The third level sub-category of the content |

### Responses

#### 200 Successful response

##### Response Schema: application/json

|     |     |
| --- | --- |
| assets | Array of objects |
| Array

|     |     |
| --- | --- |
| url | string <uri> <br>Example: "https://www.practicalmoneyskills.com/content/dam/financial-literacy/practical-money-skills/images/non-card/assessing_the_situation.jpg" | |
| category | string<br>Example: "Learn" |
| content | string<br>Example: "<p>It can be tempting to jump to conclusions when you are looking to provide care...</p>" |
| deprecated | string<br>Enum:"true" "false"<br>Example: "false" |
| lang | string<br>Example: "en" |
| lastModified | string<br>Example: "04/03/2025" |
| sub_category_level_1 | string<br>Example: "Life Events" |
| sub_category_level_2 | string<br>Example: "Elder Care" |
| sub_category_level_3 | string<br>Example: "Assessing the Situation" |
| sub_category_level_4 | string or null<br>Example: "null" |
| sub_category_level_5 | string or null<br>Example: "null" |
| sub_category_level_6 | string or null<br>Example: "null" |
| title | string<br>Example: "Assessing the Situation" |
| url | string <uri> <br>Example: "https://www.practicalmoneyskills.com/en/learn/life_events/elder_care/assessing_the_situation.html" |

#### 400 Bad request

##### Response Schema: application/json

|     |     |
| --- | --- |
| error | string<br>Example: "Bad request" |

#### 401 Unauthorized

##### Response Schema: application/json

|     |     |
| --- | --- |
| error | string<br>Example: "Unauthorized" |

#### 404 Not found

##### Response Schema: application/json

|     |     |
| --- | --- |
| error | string<br>Example: "Not found" |

```json
{
  "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"
}
```
