The single endpoint your app needs to know about to communicate with the ShootProof API is the service description endpoint. This endpoint will never change, and it provides the links that allow your app to navigate the API and find the information it needs.
https://api.shootproof.com/studio
Refer to Link Relations for more information on the links returned in the service description object.
{
"type": "service-description",
"name": "ShootProof Studio Panel API",
"contentType": [
"application/vnd.shootproof+json"
],
"links": {
"brand": {
"href": "https://api.shootproof.com/studio/brand{/id}",
"templated": true
},
"me": {
"href": "https://api.shootproof.com/studio/me"
},
"self": {
"href": "https://api.shootproof.com/studio"
}
},
"time": "2018-11-08T20:51:56+00:00"
}
The service description response depicted here is for example purposes only. The real service description response has many more links to let your app know all the things it can do.