Serverless backend in seconds!
Create serverless apps with APIs and databases in seconds
Check Cloud Backend documentation & samples
The future of cloud development & hosting
Cloud Backend is a powerful Serverless Backend running in the cloud.
Cut your time to market by 90% with no setup, no maintenance.
We provide a MySQL compatible Database with a REST API / JSON
Create cloud functions without code or with your language
All aspects of your project in one place: UI, DB, Code, Domains, ...
USE YOUR FAVORITE LANGUAGE
CLOUD BACKEND FOR DEVELOPERS
Powerful API Builder with auto generated documentation & testable samples.
This sample cloud function does a search in a database. Type a brand name in this list: Nivea, Samsung or Apple, then click on TRY
jQuery sample code to call an API function
// Try me from your project
var settings = {
"url": "https://testme.appdrag.com/api/SearchProducts",
"data": {
"brand" : "nivea" // or pass a variable
},
"method": "POST",
"async": true,
"crossDomain": true,
"processData": true
};
$.ajax(settings).done(function (response) {
console.log(response); // TODO: Do something with the result
});
SCREENSHOTS OF CLOUD BACKEND
1 - Create Cloud Database
● Create Tables visually
● Search/Create/Update/Delete Rows visually
● Import/Export data from CSV or API
● Execute complex SQL Queries
● Backup/Restore to MySQL compatible format
2 - Create Cloud Functions
Create Cloud Functions with your favorite language
● NodeJS
● Python
● C#
● GO
● Java
● Ruby
● SQL
... or without coding with Visual SQL
3 - Review & implement
Your online documentation is automatically generated and updated as your API evolves.
Sample code is provided for API usage for:
cURL, NodeJS, C#, PHP, Python, Ruby & Go.
Share it with your dev team & partners and you're ready to create high end applications!
CLOUD BACKEND PRICING
FREE
$0/mth
Let's start for FREE!
500 ROWS
30 API CALLS PER MINUTE
10K SECONDS OF API TIME
50 TRANSACTIONAL EMAILS
0 SCHEDULED TASK
STARTER
$10/mth + TAX
or $100 if paid annually
50 000 ROWS
75 API CALLS PER MINUTE
100K SECONDS OF API TIME
2500 TRANSACTIONAL EMAILS
1 SCHEDULED TASK
SMALL
$25/mth + TAX
or $250 if paid annually
250 000 ROWS
150 API CALLS PER MINUTE
250K SECONDS OF API TIME
5K TRANSACTIONAL EMAILS
3 SCHEDULED TASKS
MEDIUM
$50/mth + TAX
or $500 if paid annually
1 000 000 ROWS
500 API CALLS PER MINUTE
500K SECONDS OF API TIME
10K TRANSACTIONAL EMAILS
8 SCHEDULED TASKS
LARGE
$100/mth + TAX
or $1000 if paid annually
10 000 000 ROWS
1000 API CALLS PER MINUTE
1M SECONDS OF API TIME
25K TRANSACTIONAL EMAILS
16 SCHEDULED TASKS
XL
$250/mth + TAX
or $2500 if paid annually
50 000 000 ROWS
2500 API CALLS PER MINUTE
5M SECONDS OF API TIME
50K TRANSACTIONAL EMAILS
32 SCHEDULED TASKS
XL2
$500/mth + TAX
or $5k if paid annually
100 000 000 ROWS
5k API CALLS PER MINUTE
10M SECONDS OF API TIME
100K TRANSACTIONAL EMAILS
64 SCHEDULED TASKS
XL3
$1k/mth + TAX
or $10k if paid annually
250 000 000 ROWS
10k API CALLS PER MINUTE
25M SECONDS OF API TIME
250K TRANSACTIONAL EMAILS
128 SCHEDULED TASKS
XL4
$2k/mth + TAX
or $20k if paid annually
500 000 000 ROWS
20k API CALLS PER MINUTE
50M SECONDS OF API TIME
500K TRANSACTIONAL EMAILS
256 SCHEDULED TASKS
Do you needs something bigger? Contact us
DO YOU HAVE QUESTIONS?
What is Cloud DB?
Cloud Backend provides a Cloud SQL Database (100% compatible with MySQL) with high availability & security. You can Create tables, Add/Modify/Delete lines in the back office or use the simple and powerful REST API to execute SQL Queries on your DB.
What forms of payment do you accept?
We accept debit and credit cards (through STRIPE). When you register a card with us, we do not keep the card number in our database, we only keep a card fingerprint to be able to renew your subscriptions if needed.
What are Cloud Functions?
Instead of renting a dedicated server or virtual machine, deploy your code on the cloud and forget about maintenance and security issues. You can write your cloud functions with Node.js, Java, Dot Net, Python and more to come soon (PHP, Go, Perl, ...)
Can I upgrade to another plan?
Of course! You can upgrade your plan any time during your subscription. Open the dashboard of your project, click on Backend, and finally click on"Upgrade."
What are Tables & Rows?
All our offers include an unlimited number of tables. Tables are a database representation of a collection of things (Users, Leads, Orders, etc.). Depending on your plan, you can store a maximum number of rows across all your tables.
How do I cancel my subscription?
To cancel your subscription, open the AppDrag dashboard and click on your project. When the project is open, click on Backend. The last step is to click on"cancel."
What is the meaning of API calls per minute?
This is the number of API Queries you can make in 1 minute before being rate limited. This counts SQL Queries to CloudDB & API Calls to Cloud Functions. If you expect more usage, you can upgrade or downgrade instantly based on your needs.
How long are your contracts?
All the plans can be paid monthly or annually. Of course you can always cancel your plan renewal at any time.
What is a scheduled task?
Cloud functions can be scheduled every X minutes, every day, week or month. It's super usefull when you want to execute some reccurent tasks like: Do X every monday at 3AM. Do Y first day of the month or Do Z every 5 minutes every day. Based on your Cloud Backend plan you have a certain amount of scheduled tasks that you can configure.
What are transactional emails credits?
Our plans include transactional emails credits, you can use them to send email notifications to your users or yourself Instead of using an external SMTP server to send emails. It's ways easier and you can start to send emails from your cloud functions in few seconds with our NPM package.
What is Seconds of API Time?
SQL Queries or Cloud Functions take computation time to execute. The amount of time will vary based on your specific queries and functions. Compute time is billed per millisecond (ms) with a minimum of 100ms per operation.
Ex: if you want to execute a query that takes 100ms to execute and you execute it 5000 times, you will be billed for 500 seconds (5000*100 = 500,000 ms / 1000 = 500).
How to connect my website to my backend?
You can use AJAX to make queries with Javascript to your Cloud Backend. We provide a few samples to help you get started.
Check our documentation for more informations:
Cloud Backend Documentation