No-Code Secure Apps

Turn your database into a secure app — no coding

OINO.cloud connects to your existing database and gives you a RESP API, AI generated pages and SSO authentication. No developers, no servers, no code, just your data where you need it.

Works with the Microsoft, Google and corporate logins your team already uses.

From database to secure app — without code

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

No-code icon

No Coding Required

Connect your database and define tables as APIs and create access token rights to publish your data. No developers to hire, no servers to run, no maintenance.

See how it works →
AI icon

AI-Built Pages

Select what data to use and describe what you need from it and our AI will build it for you. Or use your own AI tools and publish on any webserver.

See example →
Single sign-on icon

Enterprise Single Sign-On

Sign in with your corporate accounts and control which groups have access to what data.

Read guide →
Live data icon

Live Data

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.

See example →
Data entry icon

Self-Service Data Entry

OINO.cloud is compatible with HTML forms and you can include data input in any web site, application or email.

See example →
Reporting tools icon

Secure Your Data

Instead of opening your databases to internet or syncing copies of it, make it available on demand using our trusted API gateways using easy to manage access controls.

See example →

Global API Network

With our global API network, you can always have optimal performance by selecting your closest endpoint with no extra configuration.

Testing...
Preparing tests...
Global API Speed Test Map North EU DB Click "Run Speed Test" US Central DB Click "Run Speed Test" East Asia DB Click "Run Speed Test"

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 →

Start free, scale as you grow

No credit card required to get started. Pay only for what you use beyond the free quota.

Free
€0 / month
Try OINO.cloud with no commitment.
  • 2 APIs
  • 2 GB/day free traffic
  • 2 Release history
Get Started Free
Production
€200 / month
Free quota covers most production loads.
  • 50 APIs free + €0.32/api/day
  • 50 GB/day free + €0.72/GB
  • 50 Release history
  • 5 AI pages + €0.46/page/day
Start 30 Days Free
Enterprise
€400 / month
Even more quota and SSO.
  • 100 APIs free + €0.12/api/day
  • 100 GB/day free + €0.36/GB
  • 100 Release history
  • 10 AI pages + €0.40/page/day
  • SSO authentication
Start 30 Days Free

AI-Powered Data Apps

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/oinocloud/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

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