While you will likely use an application specific library (Python's Requests or PHP's Guzzle, for example) to use the API, the easiest way to play around is using the demos we have provided in the docs. Alternatively, a Postman Collection has been provided for your convenience.
Below is a health check you can use to test your connection to the Lessonspace API. To test this open up a command prompt, paste the following and hit enter.
{
"request": {
"method": "GET",
"url": "https://api.thelessonspace.com/v2/hello/"
},
"response": {
"status": 200,
"httpVersion": "HTTP/2",
"headers": [
{
"name": "content-type",
"value": "application/json"
}
],
"content": {
"text": "{\"response\":\"The sun is shining and so are you \uD83C\uDF1E\"}",
"mimeType": "application/json"
}
}
}