Master Save Among 8 Database Types

8 Database Support Out Of The Box

Database Compatibility with API Maker

Save/Update in 8 databases in one API call

MongoDB

Find data from mongodb

MySQL

Get city data from mysql

SQL Server

Get states data from sql server database

Maria DB

Get countries data from maria database

Oracle DB

Get continent data from database

PostgreSQL DB

Get planets data from postgresql database

Ti DB

Get planets data from TI database

Percona XtraDB

Get planets data from Percona Xtra database

  • One GET API call can get data from N number of different typea of databases with N number of data complexity.
  • Moreover we can stream data also, we can get a huge amount of data also.
  • In our custom APIs, we can get huge data as one by one object so we can process them one by one.
Master save request body

{
    "person_name": "Kishan",
    "street_id": { // for MongoDB
        "id": 12,
        "street_name": "TIRUPATI",
        "area_id": { // for MySQL
            "id": 24,
            "area_name": "RANIP",
            "city_id": { // for SQL_SERVER
                "id": 382480,
                "city_name": "AHMEDABAD",
                "state_id": { // for MariaDB
                    "id": 91,
                    "state_name": "GUJARAT",
                    "country_id": { // for Oracle
                        "id": 4,
                        "country_name": "INDIA",
                        "continent_id": { // for PostgreSQL
                            "id": 3,
                            "continent_name": "ASIA"
                            "planet_id": { // for Ti DB
                                "id": 2,
                                "planet_name": "EARTH"
                                "galexy_id": { // for Percona XtraDB
                                    "id": 1,
                                    "galaxies_name": "Milky Way"
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

                                                                                   
Master Save Response

{
"_id": "6458d476462d139b9181e3d7",
"person_name": "Kishan",
"street_id": 5555
}