https://github.com/learntocloud/define-the-cloud
API that serves L2C cloud dictionary
https://github.com/learntocloud/define-the-cloud
Last synced: about 1 year ago
JSON representation
API that serves L2C cloud dictionary
- Host: GitHub
- URL: https://github.com/learntocloud/define-the-cloud
- Owner: learntocloud
- License: mit
- Created: 2023-01-15T00:13:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-29T03:39:31.000Z (over 1 year ago)
- Last Synced: 2025-04-07T02:35:18.289Z (about 1 year ago)
- Language: C#
- Homepage: https://definethecloud.guide
- Size: 677 KB
- Stars: 29
- Watchers: 2
- Forks: 9
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
define the cloud API
The API that powers [Define the Cloud](https://definethecloud.guide) homepage.
## Integrate into your own project
The URL [https://definethecloudapi-bwh8aehvcgdgg2fq.eastus2-01.azurewebsites.net/api/GetAllDefinitions](https://definethecloudapi-bwh8aehvcgdgg2fq.eastus2-01.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://definethecloudapi-bwh8aehvcgdgg2fq.eastus2-01.azurewebsites.net/api/GetAllDefinitions?pageSize=20 will display 20 results per page.
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](https://github.com/learntocloud/cloud-dictionary/issues) if you want to contribute.
## Author
- Twitter: [@madebygps](https://twitter.com/madebygps)
- Github: [@madebygps](https://github.com/madebygps)
## License
This project is [MIT](https://github.com/learntocloud/cloud-dictionary/blob/main/LICENSE) licensed.