How API URL links work

The links
-https://api.sandbox.stuart.com (Sandbox environment- Test)
-https://api.stuart.com (Production environment)

are the base URLs of our API. They are not meant to work by their own. Indeed, to create any kind of request, we complete the URL with the correspondent endpoint.

For example, to create a job, the correspondent endpoint is /v2/jobs , so the complete URL request in Sandbox environment is then https://api.sandbox.stuart.com/v2/jobs and for production environment is
https://api.stuart.com/v2/jobs. You can see examples and try them out using our API Documentation.

2 Likes