Skip to main content
GET
https://api.crewship.dev
/
v1
/
tables
/
{id}
curl https://api.crewship.dev/v1/tables/tbl_abc123xyz789 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "tbl_abc123xyz789",
  "name": "leads",
  "description": "Sales prospects",
  "columns": [
    { "name": "company", "type": "text", "required": true },
    { "name": "score", "type": "number", "required": false }
  ],
  "row_count": 42,
  "created_at": "2024-01-15T10:35:00Z",
  "updated_at": "2024-01-20T08:12:00Z"
}

Path Parameters

id
string
required
Table ID

Response

id
string
Table ID
name
string
Table name
description
string
Table description or null
columns
array
Column definitions
row_count
number
Number of rows in the table
created_at
string
ISO 8601 timestamp
updated_at
string
ISO 8601 timestamp
curl https://api.crewship.dev/v1/tables/tbl_abc123xyz789 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "tbl_abc123xyz789",
  "name": "leads",
  "description": "Sales prospects",
  "columns": [
    { "name": "company", "type": "text", "required": true },
    { "name": "score", "type": "number", "required": false }
  ],
  "row_count": 42,
  "created_at": "2024-01-15T10:35:00Z",
  "updated_at": "2024-01-20T08:12:00Z"
}