App
BasicsRESTful design
Basics

RESTful design

The Uslimato API is RESTful: consistent endpoints, JSON responses and HTTP status codes. Standard tools work right away.

#Consistent and predictable

Resources like assets, users and processes have clearly named endpoints. Responses come as JSON; the success or failure of a call is reflected in the HTTP status code.

#A first call

With a valid API key you can list assets, for example:

bash
# Assets auflisten
curl https://api.uslimato.com/v1/assets \
  -H "Authorization: Bearer $USLIMATO_API_KEY"

#Usable with standard tools

Because the API follows conventions, common HTTP clients, SDK generators and testing tools work without special handling.

Was this helpful?
Suggest an edit