api
Use the Glide API for programmatic data operations - REST API v2 and @glideapps/tables npm package. Use when importing data, bulk operations, automating data sync, or building integrations with Glide tables.
What this skill does
# Glide API
## API Overview
### Two Ways to Access Data
1. **REST API v2** - Direct HTTP calls to `api.glideapps.com`
2. **@glideapps/tables** - Official npm package (simpler for JavaScript/TypeScript)
### Important Limitations
- **Big Tables Only**: API v2 only works with Glide Big Tables, not native app tables
- **Team Scope**: API operates at team level, not app level
- **Quota Costs**: Read/write operations consume updates from your plan
- **Row Limits**: Big Tables support up to 10 million rows
- **Aggregation Limits**: Rollups/Lookups limited to 100 matching rows in Big Tables
- **Computed Column Limits**: Some computed column types can't be filtered/sorted (see below)
## Getting Your API Token
1. Open any app in Glide Builder
2. Go to **Data** tab
3. Click **Show API** button (bottom of data grid)
4. Click **Copy secret token**
Store token securely - never commit to version control.
## REST API v2
### Base URL
```
https://api.glideapps.com/
```
### Authentication
```
Authorization: Bearer YOUR_API_TOKEN
```
### Endpoints
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | `/tables` | List all Big Tables |
| POST | `/tables` | Create new Big Table |
| GET | `/tables/{tableID}/rows` | Get rows |
| GET | `/tables/{tableID}/rows/{rowID}` | Get single row |
| HEAD | `/tables/{tableID}/rows` | Get table version |
| POST | `/tables/{tableID}/rows` | Add rows |
| PATCH | `/tables/{tableID}/rows/{rowID}` | Update row |
| PUT | `/tables/{tableID}` | Overwrite table |
| DELETE | `/tables/{tableID}/rows/{rowID}` | Delete row |
### Example: List Tables
```bash
curl -X GET "https://api.glideapps.com/tables" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
### Example: Get Rows
```bash
curl -X GET "https://api.glideapps.com/tables/TABLE_ID/rows" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
### Example: Create Table
Create a new Big Table with schema and initial data. See [official docs](https://apidocs.glideapps.com/api-reference/v2/tables/post-tables).
```bash
curl -X POST "https://api.glideapps.com/tables" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Contacts",
"appsToLink": ["APP_ID_HERE"],
"schema": {
"columns": [
{"id": "fullName", "displayName": "Full Name", "type": "string"},
{"id": "email", "displayName": "Email", "type": "string"},
{"id": "photo", "displayName": "Photo", "type": "uri"},
{"id": "createdAt", "displayName": "Created", "type": "dateTime"}
]
},
"rows": [
{
"fullName": "Alex Bard",
"email": "[email protected]",
"photo": "https://randomuser.me/api/portraits/men/32.jpg",
"createdAt": "2024-07-29T14:04:15.561Z"
}
]
}'
```
**Response:**
```json
{
"data": {
"tableID": "2a1bad8b-cf7c-44437-b8c1-e3782df6",
"rowIDs": ["zcJWnyI8Tbam21V34K8MNA"],
"linkedAppIDs": ["APP_ID_HERE"]
}
}
```
**Column Types for Schema:**
| Type | Description |
|------|-------------|
| `string` | Text data |
| `number` | Numeric values |
| `dateTime` | ISO 8601 dates |
| `uri` | URLs (images, links) |
| `boolean` | True/false |
**Key Points:**
- `appsToLink`: Array of app IDs to automatically link the table to
- `schema.columns`: Each has `id` (used in row data), `displayName` (shown in UI), `type`
- `rows`: Use column `id` values as keys, NOT `displayName`
### Example: Add Rows
**Use column IDs (not display names) as keys.** Column IDs are defined in the schema when creating the table.
```bash
curl -X POST "https://api.glideapps.com/tables/TABLE_ID/rows" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"rows": [
{"fullName": "Alice", "email": "[email protected]"},
{"fullName": "Bob", "email": "[email protected]"}
]
}'
```
### Example: Update Row
```bash
curl -X PATCH "https://api.glideapps.com/tables/TABLE_ID/rows/ROW_ID" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Updated Name"
}'
```
### Example: Delete Row
```bash
curl -X DELETE "https://api.glideapps.com/tables/TABLE_ID/rows/ROW_ID" \
-H "Authorization: Bearer YOUR_API_TOKEN"
```
## @glideapps/tables Package
### Installation
```bash
npm install @glideapps/tables
```
### Setup
```javascript
import * as glide from "@glideapps/tables";
const myTable = glide.table({
token: "YOUR_API_TOKEN",
app: "APP_ID", // Optional for Big Tables
table: "TABLE_ID",
columns: {
name: { type: "string", name: "Name" },
email: { type: "email-address", name: "Email" },
photo: { type: "image-uri", name: "Photo" },
active: { type: "boolean", name: "Active" }
}
});
```
### Column Types
| Type | Description |
|------|-------------|
| `string` | Text |
| `number` | Numeric |
| `boolean` | True/False |
| `date-time` | Date and time |
| `image-uri` | Image URL |
| `email-address` | Email |
| `phone-number` | Phone |
| `uri` | URL |
### Get Rows
```javascript
// Get all rows
const rows = await myTable.get();
// With query parameters
const filtered = await myTable.get({
where: { active: true },
limit: 10
});
```
### Add Rows
```javascript
// Add single row
await myTable.add({
name: "Alice",
email: "[email protected]"
});
// Add multiple rows
await myTable.add([
{ name: "Alice", email: "[email protected]" },
{ name: "Bob", email: "[email protected]" }
]);
```
### Update Row
```javascript
await myTable.update(rowId, {
name: "Updated Name"
});
```
### Delete Row
```javascript
await myTable.delete(rowId);
```
## Data Versioning
The API supports optimistic locking via ETags:
```bash
# Get current version
HEAD /tables/{tableID}/rows
# Update with version check
PATCH /tables/{tableID}/rows/{rowID}
If-Match: "version-etag"
```
If the version has changed, you'll get HTTP 412 Precondition Failed.
## Pricing
| Operation | Cost |
|-----------|------|
| Write (per row) | 0.01 updates |
| Read (per row) | 0.001 updates |
| List tables | Free |
| Get version | Free |
Additional updates beyond quota: $0.02 each
## Big Table Computed Column Limits
When querying Big Tables, not all computed columns can be used for filtering or sorting.
**Supported for filtering/sorting:**
- Math columns
- If-Then-Else columns
- Lookup columns (single relation, basic columns only)
- Template columns (static template only)
**NOT supported for filtering/sorting:**
- Rollup columns
- Multi-relation columns
- Query columns
- Plugin-based columns
**Lookup requirements:**
- Must use single relation (not multi-relation)
- Relation column must be basic (non-computed)
- Target table must be a Big Table
- Target column must be basic and not user-specific
**Aggregation limit:** Rollups/Lookups return max 100 matching rows.
See the `data-modeling` skill for full Big Table documentation.
## Best Practices
1. **Use Big Tables** for API access - native tables aren't supported
2. **Batch operations** - Add multiple rows in one call
3. **Use versioning** - Prevent data conflicts with If-Match
4. **Cache tokens** - Don't request new tokens repeatedly
5. **Handle errors** - Check for 4xx/5xx responses
6. **Respect rate limits** - Don't hammer the API
7. **Check computed column support** - Not all computed columns work with filters
## Common Patterns
### Sync External Data to Glide
```javascript
import * as glide from "@glideapps/tables";
const targetTable = glide.table({
token: process.env.GLIDE_TOKEN,
table: "my-big-table-id",
columns: {
externalId: { type: "string", name: "External ID" },
name: { type: "string", name: "Name" },
updatedAt: { type: "date-time", name: "Updated At" }
}
});
async function syncData(externalData) {
// Get existing rows
const existing = await targetTable.get();
const existingMap = new Map(existing.map(rRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.