Web API

Press shift + S to search API reference.

Extensions

List block installations

gethttps://api.airtable.com/v0/meta/bases/{baseId}/blockInstallations

Lists basic information of base block installations.

Requirements

AuthenticationPersonal access token, OAuth integration
ScopeworkspacesAndBases:read
User role

Base read-only

Billing plansEnterprise (pre-2023.08 legacy plan), Enterprise Scale

Path parameters

baseId
string

Response format

array of the below object
id
string
state
"enabled" | "disabled"
createdByUserId
string

A user ID

createdTime
string

A date timestamp in the ISO format, eg:"2018-01-01T00:00:00.000Z"

blockSlug
optional<string>

Unique readable string identifier for a block. Only present for Airtable authored blocks.

blockId
string
Request (example)
Copy
$
curl "https://api.airtable.com/v0/meta/bases/{baseId}/blockInstallations" \
-H "Authorization: Bearer YOUR_TOKEN"
200 – Response (example)
[
{
"blockId": "blkSmwFJEdER6oksM",
"blockSlug": "chart",
"createdByUserId": "usrL2PNC5o3H4lBEi",
"createdTime": "2019-01-01T00:00:00.000Z",
"id": "bliXyN0Q6zfajnDOG",
"state": "enabled"
}
]