Skip to content
YOUR DATA. READY FOR WHAT’S NEXT.

Your database.
Your agents.
Connected.

Turn your database into a platform for AI agents and apps. REST APIs, MCP, and secure access — ready to use, without writing code.

Works with the agentic AI solution your team already uses.

Claude
Codex
Figma
oino.cloud
Waiting for your agent…
MCP
create_table add_column provision_database publish_role update_token_roles publish_page publish_app
APIs
no endpoints yet
Apps
no apps yet
Your Database
Postgres · MySQL · SQL Server — stays where it is
empty schema
01 Connect your database02 Give your agents secure access03 Turn ideas into working apps

Everything between your data
and your next idea.

OINO.cloud handles logins, security, pages and integrations, so your team can put data to work without a development project.

API platform icon

AI Ready Data Platform

OINO.cloud automatically creates a REST API and MCP-server from your database schema without setting up any servers, gateways or caching. No more costly and time-consuming integaration projecst just to make your data accessible.

See how it works →
AI agents icon

Agentic Devops

OINO.cloud MCP server is a sandbox of one database for your agents to manage schema and create APIs, web pages and authenticated apps, enabling a fully autonomous agentic development process.

See example →
Single sign-on icon

Authorized Data Access

Define tokens with neccessary CRUD-right and optionally OAuth or enterprise SSO based per user access control, enabling no code authenticated apps.

Read guide →
Live data icon

Up-to-date Data Everywhere

Instead of trying to sync stale data between platforms, publish always-up-to-date tables, lists and reports in any website or portal just by creating a template to convert data to HTML in real time. Or use a CSV-link with any Business Intelligence platform for on demand update of data.

See example →
Universal data access icon

Universal Data Plane

OINO.cloud provides a centralized, standard platform for accessing data from different data sources. Instead of databases open to internet or dozens of point-to-point integrations, OINO.cloud is your single point of data access with fully featured.

See example →
Data ownership icon

Own Your Data

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 →

Start free, scale as you grow

Start small and pay for what you need or scale your quotas for predictable costs.

Free
€0 / month
Try OINO.cloud free with credit card required.
Included
  • Traffic 2 GB/day
  • MCP servers 1
  • Release history 2
  • SSO authentication —
Get Started Free
Production
€200 / month
Free quota to cover most production loads.
Included
  • Traffic 50 GB/day
  • MCP servers 5
  • Release history 50
  • SSO authentication —
Start 14 Days Free
Enterprise
€400 / month
Even more quota and enterprise SSO.
Included
  • Traffic 100 GB/day
  • MCP servers 10
  • Release history 100
  • SSO authentication ✓
Start 14 Days Free

Usage beyond the included quota

Same unit prices on Pilot, Production and Enterprise. You only pay for what exceeds your plan’s quota.

€0.35 / GB
Traffic above the daily included amount
€1.50 / server / day
Each MCP server beyond those included

Describe it. Build it. Use your data.

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.

You are a web developer assistant. You have access to the OINO.cloud REST API. Base URL: https://api.oino.cloud/api/v1/OinoCloudWebsite/DCAE275CDC0C0B27E607E35FB1084A54 Columns: ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued Query parameters: oinoquerylimit=N — limit rows oinoqueryorder=Col [asc|desc] — sort oinoqueryselect=Col1,Col2 — select columns oinoqueryfilter=(Col)-op(val) — filter (ops: eq, neq, gt, lt, gte, lte, like), values without quotes and % for wildcard Accept header: "text/json" for JSON, "text/csv" for CSV, "text/html" for HTML. Your task: 1. Fetch data from the API using JavaScript fetch(). 2. Create a complete, self-contained HTML page that displays the data based on the user's request. 3. Return ONLY the HTML code, no explanations. The HTML must include inline CSS and JS. 4. Use modern, clean design with good typography.
AI Output
Waiting for prompt…

See it in action

All examples here use live out-of-the-box OINO.cloud APIs without any additional backend development. Just HTML and JS.

Live Data Table with Sorting

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

A full REST API — nothing to build

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.

Filtering

oinoqueryfilter

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 →

Ordering

oinoqueryorder

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 asc
Ordering guide →

Paging

oinoquerylimit

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 2
Paging guide →

Column Selection

oinoqueryselect

Return only the fields you need to keep payloads lean and responses fast.

# Just the columns you need
GET /Products?oinoqueryselect=
ProductName, UnitPrice, UnitsInStock
Select guide →

HTML Templates

Accept: text/html

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 →

JSON, CSV & More

Accept

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   # HTML
Formats guide →

Ready to try it?

Get a free account and have your first API running in under five minutes. No credit card required.

Get Started Free