Your API endpoint (subdomain) is created and ready to use ✅
https://xxxx.cloudapis.net/api/
Endpoint created on Nov 23 2022 01:15:23
- This is a unique url and created exclusively for you.
- This url will be deleted if not used for more than 10 days.
- You can store real data or dummy data for testing purposes.
- You can do all sets of CRUD operations ( GET, POST, PUT , DELETE, Search ) with this API endpoint.
Rest APIs
Action | URL | Http |
Create | https://cloudapis.net/api/1f9e69b385194df8b3e2ff99de38b265/{resource}/ | POST |
Get | https://cloudapis.net/api/1f9e69b385194df8b3e2ff99de38b265/{resource}/{_id} | GET |
Update | https://cloudapis.net/api/1f9e69b385194df8b3e2ff99de38b265/{resource}/{_id} | PUT |
Get All | https://cloudapis.net/api/1f9e69b385194df8b3e2ff99de38b265/{resource}/ | GET |
Delete | https://cloudapis.net/api/1f9e69b385194df8b3e2ff99de38b265/{resource}/{_id} | DELETE |
- Here {resource} is an Entity, you can give any name, e.g /Employee, /Users etc.
- You can create more than one resource while creating objects with POST api.
- These rest apis can be integrated in any programming or scripting languages.
- See examples in
Examples in JavaScript
Create resource user(POST)