Registrado

API Services

Yotta by Registrado

Welcome to the big data store
Simple & Comprehensive
Modern API Generators
Advanced Query Builders
Beautiful documentation

Features:

  • Application Programming Interface (API) Builder
  • BIG data
  • Query Builder
  • Representational State Transfer (REST) / Simple Object Access Protocol (SOAP)
  • Load Balanced
  • Monitoring
  • Proxy Gateway
  • Rate Limited

API BUILDER

Design your own API

SQL QUERY BUILDER

Data Definition Language (DDL)
  • CREATE
  • DROP
  • ALTER
  • TRUNCATE
Data Query Language (DQL)
  • SELECT
Data Manipulation Language (DML)
  • INSERT
  • UPDATE
  • DELETE
Data Control Language (DCL)
  • GRANT
  • REVOKE
Transaction Control Language (TCL)
  • COMMIT
  • ROLLBACK
  • SAVE POINT
CREATE DATABASE registradoDB; CREATE TABLE table (id NOT NULL AUTO_INCREMENT, name varchar(255), description varchar(255), PRIMARY KEY (id)); CREATE VIEW table_view AS ...; SELECT t.id FROM table AS t WHERE t.id = 1 LIMIT 1; INSERT INTO `table` (name, description) VALUES ('name1', 'desc1'), ('name2', 'desc2'); UPDATE table SET name = '', description = '' WHERE table.id = 1; DELETE FROM table_name WHERE condition;