Overview
This recipe walks you through finding your credentials in the Aptly UI and making a live API call to confirm everything is working.What you need
- An Aptly account with at least one board
- Node.js 18 or later installed, or a terminal with cURL
Step 1: Get your API key and board ID
- Open the board you want to connect to
- Click Card Sources in the board toolbar
- Select API
- Toggle the switch to enable the REST API
- Copy your API Key and note the board ID in the POST URL
https://app.getaptly.com/api/aptlet/YOUR_BOARD_ID
The board ID is the last segment of that URL.
Step 2: Fetch the board schema
Before posting any data, fetch the schema to see what fields are available on the board.Step 3: Post a test card
Now post a card using field names from the schema you just retrieved.Step 4: Confirm the card exists
Retrieve the card you just created using the ID from the previous step.Next steps
- Create a card with a full set of field values
- Get data from a board to pull existing records
- Set up a webhook to receive real-time updates
