Working with Data
Learn how to query, create, and update data using the PlumoAI API.
Querying Databases
GET /v1/databases/{database_id}/query
Authorization: Bearer YOUR_API_KEYUse the query endpoint to filter and sort database entries.
Creating Pages
POST /v1/pages
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"parent": { "database_id": "..." },
"properties": { ... }
}Create new pages in your databases with custom properties.
