Skip to main content
POST
/
api
/
v1
/
runtime
/
v1
/
vectors
/
stores
/
{name}
/
documents
Add Document to Store
curl --request POST \
  --url https://api.runflow.ai/api/v1/runtime/v1/vectors/stores/{name}/documents \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>",
  "metadata": {}
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.runflow.ai/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

name
string
required

Vector store name

Body

application/json
content
string
required
metadata
object

Response

{ success, documentId, vectorStore, message } on success.