MyRobotsMyRobots

API Playground

Test API endpoints interactively

Request

Response

Execute a request to see the response

Code Example

// JavaScript
const response = await fetch('https://us-central1-myrobots-app.cloudfunctions.net/api/v1/auth/token', {
  method: 'POST',
  headers: {
  "Content-Type": "application/json"
},
  body: {
  "api_key": "mrbts_YOUR_API_KEY"
}
});
const data = await response.json();
console.log(data);