Seeds / Get
Get Seed
Fetch detailed information about a specific seed by its ID. Returns comprehensive metadata including title, type, processing status, token count, chunk count, creation date, and associated bundles.
GET
{baseAPIUrl}/seeds/:seedIdAuthentication
Required. Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEYPath Parameters
| Parameter | Type | Description |
|---|---|---|
| seedId | string | UUID of the seed to retrieve |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| appId | string | Required | Application identifier |
| externalUserId | string | Required | External user identifier |
| includeChunks | boolean | Optional | Include chunks (default: true) |
Response
| Field | Type | Description |
|---|---|---|
| id | string | Unique identifier |
| type | string | Seed type (pdf, text, image, etc.) |
| title | string | Seed title |
| summary | string | Auto-generated summary |
| createdAt | string | ISO 8601 timestamp |
| tokenValue | number | Total token count |
| chunks | array | Array of chunk objects with embeddings |
Try It
Path Parameters
UUID of the seed to retrieve
Query Parameters
Application identifier
External user identifier for data isolation
Include chunks in response (default: true)