Collections
The route is designed to be resource-oriented and follows standard HTTP verbs.
get
https://api
.myjson.online/v1/collections/:collectionId/records
Return all records from the collection
// Javascript example
var myHeaders = new Headers();
myHeaders.append("x-collection-access-token", "YOUR_COLLECTION_ACCESS_TOKEN");
var requestOptions = {
method: 'GET',
headers: myHeaders,
redirect: 'follow'
};
fetch("https://api.myjson.online/v1/collections/YOUR_COLLECTION_ID/records", requestOptions)
.then(response => response.json())
.then(result => console.log(result))
.catch(error => console.log('error', error));
Last modified 2mo ago