cURL
curl --request GET \ --url https://core-api.getaptly.com/api/schema/{boardId} \ --header 'x-token: <api-key>'
[ { "key": "abc123", "label": "Tenant Name", "type": "text" }, { "key": "def456", "label": "Move-in Date", "type": "date" }, { "key": "ghi789", "label": "Monthly Rent", "type": "money" } ]
Returns the list of fields defined on the board. Always fetch the schema first so you know which field keys to use when reading or writing card data.
The board's UUID (aptlet.uuid).
aptlet.uuid
Array of field definitions.
Field UUID — use this as the key when reading/writing card data.
Human-readable field name.
Field type (e.g. text, date, money, multiselect, etc.)