Trusted by 250,000+ developers from startups to Fortune 500 companies:
This is a pre-built, open source component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.
To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.
Get Record on Airtable
Description:Get a record from a table by record ID.
Version:0.2.2
Key:airtable-get-record
import airtable from "../../airtable.app.mjs";
import common from "../common.mjs";
import commonActions from "../../common/actions.mjs";
export default {
key: "airtable-get-record",
name: "Get Record",
description: "Get a record from a table by record ID.",
version: "0.2.2",
type: "action",
props: {
...common.props,
recordId: {
propDefinition: [
airtable,
"recordId",
],
},
},
async run({ $ }) {
return commonActions.getRecord(this, $);
},
};
This component may be configured based on the props
defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
Label | Prop | Type | Description |
---|
Airtable | airtable | app | This component uses the Airtable app. |
Base | baseId | string | Select a value from the drop down menu. |
Table | tableId | string | Select a value from the drop down menu. |
Record ID | recordId | string | Enter a record ID (eg. recxxxxxxx ).
|
Airtable uses API keys for authentication. When you connect your Airtable account, Pipedream securely stores the keys so you can easily authenticate to Airtable APIs in both code and no-code steps.
Visit your account settings, copy your API key, and enter it below. If you only need to read data from Airtable, and not modify it, you can generate a read-only API key.

Looks like a spreadsheet, acts like a database.