Collections
The route is designed to be resource-oriented and follows standard HTTP verbs.
Last updated
Was this helpful?
The route is designed to be resource-oriented and follows standard HTTP verbs.
Last updated
Was this helpful?
myJson API V1 is deprecated. Please consider moving to the new
GET
https://api.myjson.online/v1/collections/:collectionId/records
collectionId*
String
x-collection-access-token
String
x-record-metadata
true | false
default to true, return metadata
{
records: [{ data, id }]
}
// 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));