Seeds / List
List Seeds
Retrieve a paginated list of all seeds belonging to an external user. Returns seed metadata including titles, types, processing status, token counts, and timestamps. Supports filtering and sorting options.
GET
{baseAPIUrl}/seedsAuthentication
Required. Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEYQuery Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| appId | string | Required | Application identifier |
| externalUserId | string | Required | External user identifier |
| limit | number | Optional | Items per page (1-100, default: 20) |
| offset | number | Optional | Pagination offset (default: 0) |
| filter | string | Optional | Fuzzy search on title/content |
| includeChunks | boolean | Optional | Include chunk data (default: false) |
Response
| Field | Type | Description |
|---|---|---|
| seeds | array | Array of seed objects |
| total | number | Total seeds matching filters |
| limit | number | Items per page |
| offset | number | Current offset |
| hasMore | boolean | More results exist |
Seed Object
| Field | Type | Description |
|---|---|---|
| id | string | Unique seed identifier (UUID) |
| type | string | Seed type (pdf, word, markdown, etc.) |
| title | string | null | Display title |
| summary | string | null | AI-generated summary |
| tokenValue | number | null | Total token count |
| createdAt | string | ISO 8601 timestamp |
Try It
Query Parameters
Application identifier
External user identifier for data isolation
Items per page (1-100, default: 20)
Pagination offset (default: 0)
Fuzzy search on title/content
Include chunk data in response (default: false)