---
title: Working with Data — PlumoAI Developer Guide
description: Read and write PlumoAI data tables and records through the API.
url: https://plumoai.com/developer-page/guides/working-with-data
---

# 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_KEY
```

Use 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.
