define-the-cloud icon indicating copy to clipboard operation
define-the-cloud copied to clipboard

API that serves LTC cloud dictionary

define the cloud API

The API that powers Define the Cloud homepage.

img

Integrate into your own project

The URL https://clouddictionary.azurewebsites.net/api/GetAllDefinitions shows you 10 definitions per page by default. However, you can use the pageSize URL parameter to increase the number of returned results, with a maximum of 50 per page.

For example:

  • https://clouddictionary.azurewebsites.net/api/GetAllDefinitions?pageSize=20 will display 20 results per page.
  • https://clouddictionary.azurewebsites.net/api/GetAllDefinitions?pageSize=30 will display 30 results per page, and so on.

I've also implemented continuation tokens, which are returned with the data. To access subsequent pages of results, pass the token as the continuationToken URL parameter. This will continue the results from where the last page left off. You'll need to implement your own logic to iterate over all the pages, or as many as you require. Once no more results are available, the continuationToken will be null.

Contributing

Contributions, issues and feature requests are welcome.
Feel free to check issues page if you want to contribute.

Author

License

This project is MIT licensed.