OINO.cloud automatically creates a REST API and MCP-server for any database. No integration projects, no servers, no code, just your data and your Agents.
Works with the agentic AI solution your team already uses.
OINO.cloud handles logins, security, pages and integrations, so your team can put data to work without a development project.
OINO.cloud automatically creates a REST API and MCP-server from your database schema without setting up any servers, gateways or caching.
See how it works →OINO.cloud MCP server allows your agents to discover and manage everything, enabling a fully autonomous AI development process from managing schema to creating APIs and tokens to publishing pages and creating authenticated apps.
See example →Define token level data access roles and use enterprise SSO or OAuth to control who has that right enabling no code authenticated apps.
Read guide →Publish always-up-to-date tables, lists and reports to any website or portal just by defining a template to convert data to HTML and always have live data embedded in your site. Or use CSV output for syncing data to Business Intelligence platforms.
See example →OINO.cloud provides a centralized platform for accessing and managing all your data across datasources. No more databases exposed to the open internet or trying to synchronize data between platforms or application specific silos.
See example →In the AI age, owning your data is crucial for maintaining control, privacy, and compliance. Code and compute can be easily recreated and migrated as long as data ownership is maintained.
See example →Every table and view becomes a clean REST endpoint with filtering, ordering, paging, column selection and aggregation through simple query parameters. Ask for JSON, CSV or rendered HTML with a single query — no SQL exposed, no backend code.
Compose conditions with eq, neq, gt, lt, gte, lte and like — combine them with and/or logic.
# Products over €50 still in stock GET /Products?oinoqueryfilter= (UnitPrice)-gt(50)-and(UnitsInStock)-gt(0)Filtering guide →
Sort by one or more columns in ascending or descending order, evaluated in the database for you.
# Most expensive first GET /Products?oinoqueryorder= UnitPrice desc, ProductName ascOrdering guide →
Limit result size and step through pages with the N page M syntax — pages start at 1.
# 20 rows per page, second page GET /Products?oinoquerylimit= 20 page 2Paging guide →
Return only the fields you need to keep payloads lean and responses fast.
# Just the columns you need GET /Products?oinoqueryselect= ProductName, UnitPrice, UnitsInStockSelect guide →
Render your data as HTML just by creating a template and setting the Accept header to text/html.
# Server-rendered HTML rows GET /Products?oinoquerylimit=10 Accept: text/html <tr><td>Chai</td><td>€18.00</td></tr>Templates guide →
Switch output format with the Accept header — the same endpoint serves apps, spreadsheets and BI tools.
# Same data, any format Accept: text/json # JSON Accept: text/csv # CSV Accept: text/html # HTMLFormats guide →
No credit card required to get started. Pay only for what you use beyond the free quota.
LLMs understand REST APIs with query parameters and JSON output well. Just describe what you want to do with the Products API, AI can figure out how to use the API.
All examples here use live out-of-the-box OINO.cloud APIs without any additional backend development. Just HTML and JS.
Simplest way to embed live data to a page is to fetch the API with library like HTMX, set header Accept: text/html and let OINO.cloud API render the page using a template.
| Product Name | Unit Price | Units In Stock | Units On Order |
|---|---|---|---|
Fetch JSON data from the Orders API and render it with Chart.js — a stacked bar chart of freight costs by country and month.
This form dynamically loads vote options from the database and submits your vote via a POST request — all without custom backend code.
As an example of AI development of data driven apps, this data browser was just high level requirements about using filters and sorting and paging. Even adding editing for tokens with update rights was no problem (check out your account page for that).
OINO.cloud CSV and JSON output plugs directly into typical web data import for analytics and BI tools.
Get a free account and have your first API running in under five minutes. No credit card required.
Get Started Free