Skip to main content

Introduction

With RESTED_DEV you can create a REST API connected to a database in just a few minutes!

No back-end code - You can plug your client application into a database without having to write your own back-end or maintain a database.

Accessing and managing your data is done with standard HTTP requests using the endpoints you generate at https://app.rested.dev. These are CRUD endpoints, which means that each endpoint is ready to receive CREATE, READ, UPDATE and DELETE requests.

Example:

fetch('https://app.rested.dev/api/1/ce/' +
'examples/unsecure-endpoint?' +
'key=d59eb2859c284168ac48aef65046d5dd')
.then(response => response.json())
.then((data) => {
console.log(data);
});

Authentication endpoint - We provide an authentication endpoint, with which you can authenticate users in your application and secure endpoints.

File uploads - RESTED_DEV endpoints also support file uploads. Use these endpoints to upload images, videos and any other formats your application requires.

Do you want to see it in action before reading further? Check out these examples: https://codesandbox.io/s/yawe-examples-1zyin