Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Storage / Glide Big Tables API
Glide Big Tables API logo

Glideapps Glide Big Tables API

✓ Official Vendor SpecStorageDatabasebearer13 EndpointsREST

For Agents

Read, write, and bulk-update rows in Glide Big Tables, manage staged stash uploads, and attach files to Glide app data.

Use for: I need to add new rows to a Glide Big Table from my pipeline, Update a single row in a Glide table by row ID, List all rows in a Glide Big Table, Create a new Big Table in Glide for my no-code app

Not supported: Does not render Glide app UI, run Glide actions, or edit columns/schema fields - use for Big Tables row data, file uploads, and job status only.

The Glide Big Tables API gives programmatic access to the data layer behind Glide's no-code app builder. Through it, applications and agents can create Big Tables, read and write rows in bulk or individually, monitor long-running data jobs, manage stash buffers for staged writes, and upload files that back image and document columns. It is the supported way to keep an external system of record (a warehouse, ETL job, or LLM pipeline) in sync with the data that Glide apps render to end users.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Glide Big Tables API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Glide Big Tables API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Glide Big Tables API.

Provision a new Glide Big Table with a typed column schema for a no-code app

Append rows to a Big Table in batch from an upstream warehouse or scheduled job

Patch a single row in a Big Table by row ID without rewriting the rest of the table

Replace a Big Table's schema and data wholesale via PUT /tables/{tableId}

Initiate and complete multi-part file uploads that back image or document columns

Track asynchronous data jobs via GET /jobs/{jobId} until completion

Use Cases

Patterns agents use Glide Big Tables API for, with concrete tasks.

★ Warehouse-to-Glide ETL

Operations teams running a Glide front-end on top of a warehouse can keep tables in sync by writing scheduled jobs that POST new rows to /tables/{tableId}/rows and PATCH changed rows in place. The Big Tables API supports bulk writes and exposes a job ID per long-running operation, so the pipeline can wait for completion before notifying users. Setup is typically half a day for a single table.

POST 200 rows to /tables/{tableId}/rows, capture the returned job ID, and poll /jobs/{jobId} until status is complete.

AI-Generated Content Loaded Into a Glide App

An LLM pipeline producing summaries, tags, or images can write its output rows into a Big Table so a Glide-built internal tool surfaces the results to non-technical users. Files generated by the model (charts, PDFs) are uploaded via /uploads then referenced by URL in the row payload, keeping the no-code app fully data-driven.

Initiate POST /uploads, complete the upload via POST /uploads/{uploadId}/complete, then POST /tables/{tableId}/rows with a row referencing the uploaded file URL.

Agent-Maintained Operational Database

An AI agent given a Glide Big Table as its scratchpad can append research findings, update row status, and delete stale entries through the Big Tables API. Because each row CRUD operation is a single endpoint with a typed schema, the agent can write deterministically without parsing HTML or driving a UI.

Search Jentic for 'add row to glide big table', load the schema for POST /tables/{tableId}/rows, and write a new finding row with the agent's research output.

Key Endpoints

13 endpoints — the glide big tables api gives programmatic access to the data layer behind glide's no-code app builder.

METHOD

PATH

DESCRIPTION

POST

/tables

Create a new Big Table

GET

/tables/{tableId}/rows

Get rows from a Big Table

POST

/tables/{tableId}/rows

Add rows to a Big Table

PATCH

/tables/{tableId}/rows/{rowId}

Update a single row

DELETE

/tables/{tableId}/rows/{rowId}

Delete a row

POST

/uploads

Initiate a file upload

GET

/jobs/{jobId}

Check status of a long-running job

POST

/tables

Create a new Big Table

GET

/tables/{tableId}/rows

Get rows from a Big Table

POST

/tables/{tableId}/rows

Add rows to a Big Table

PATCH

/tables/{tableId}/rows/{rowId}

Update a single row

DELETE

/tables/{tableId}/rows/{rowId}

Delete a row

POST

/uploads

Initiate a file upload

GET

/jobs/{jobId}

Check status of a long-running job

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Glide bearer tokens are stored encrypted in the Jentic vault. Agents receive a scoped credential reference at execution time and the raw token never enters the agent's prompt context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent ('add row to glide table', 'upload file to glide') and Jentic returns the matching Big Tables operation with its JSON schema, so the agent calls the right endpoint without browsing apidocs.glideapps.com.

Time to first call

Time to first call

Direct Glide integration: 0.5-1 day to build the bearer auth, multipart upload handling, and job polling. Through Jentic: under an hour - search, load, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Airtable API

→

Spreadsheet-database with deeper formula and view tooling versus Glide's app-builder-first Big Tables.

Choose Airtable when the data layer is the product itself. Choose Glide Big Tables when the data sits behind a Glide no-code app surfaced to end users.

Alternative

NocoDB API

→

Open-source no-code database with a similar table+row API surface that you self-host.

Choose NocoDB when self-hosting and Postgres-backed control matter. Choose Glide when the front-end app is also being built in Glide.

Complementary

Smartsheet API

→

Project-grid API often pulled into a Glide app for status reporting.

Use Smartsheet alongside Glide when the source data is project tracking that needs to be exposed via a Glide front-end.

FAQs

Specific to using Glide Big Tables API through Jentic.

What authentication does the Glide Big Tables API use?

Glide uses HTTP bearer token authentication. Generate a token in the Glide dashboard and send it as Authorization: Bearer {token} on each request. Through Jentic the bearer token is held in the vault and never exposed to the agent.

Can I bulk-insert rows into a Glide Big Table?

Yes. POST /tables/{tableId}/rows accepts an array of rows in a single call and returns a job ID. Poll GET /jobs/{jobId} until the job reports complete to confirm the rows landed.

What are the rate limits for the Glide Big Tables API?

Glide does not publish a fixed rate limit in the OpenAPI spec; limits depend on your Glide plan. For high-volume jobs use the stash flow (PUT /stashes/{stashId}/data) so writes are buffered before commit instead of hammering /rows.

How do I update a single Glide row through Jentic?

Search Jentic for 'update glide row', load the schema for PATCH /tables/{tableId}/rows/{rowId}, and execute with the changed columns only. Run pip install jentic to start.

Can the Big Tables API attach files to row cells?

Yes. Initiate the upload with POST /uploads, complete it with POST /uploads/{uploadId}/complete, then write the resulting file URL into the relevant column when you POST or PATCH a row.

Is the Glide Big Tables API free?

API access is part of Glide's paid plans rather than the free tier. Check your Glide subscription before integrating; the API itself does not bill per call but is gated to plan eligibility.

GET STARTED

Start building with Glide Big Tables API

Explore with Jentic
View OpenAPI Document