Working with Thidirthoughts api

Get Data

Get all the data from an api.

GET  https://thidirthoughts.onrender.com/ copy

Pagination Parameters

Limit

By default, we will return pages of 10 data.But you can limit the data per page by using limit parameter.

GET  https://thidirthoughts.onrender.com/?limit=1    copy 

The above request will response with an single data as mentioned in the limit=1.

Page

GET https://thidirthoughts.onrender.com/?page=2   copy

The above request will response with an second page of the resulted data as mentioned in the page=2.

Query Data

you can query the api using keyword parameter in the url.
By using this keyword parameter you can query the api based on the tags,name, thoughts and language.

GET https://thidirthoughts.onrender.com/?keyword=lifecopy

The above request will response with an data which has life keyword in their tags.