Obtenir une liste de documents dans un magasin de vecteurs

get

List all documents in a vector store.

Path parameters
vector-store-idstringrequired

The ID of the vector store.

Header parameters
x-api-keystringrequired

The API key for authentication.

Responses
curl -L \
  --url 'https://api.rememberizer.ai/api/v1/vector-stores/{vector-store-id}/documents' \
  --header 'x-api-key: text'
[
  {
    "id": 1,
    "name": "text",
    "type": "text",
    "vector_store": "text",
    "size": 1,
    "status": "text",
    "processing_status": "text",
    "indexed_on": "2025-04-06T12:01:29.279Z",
    "status_error_message": "text",
    "created": "2025-04-06T12:01:29.279Z",
    "modified": "2025-04-06T12:01:29.279Z"
  }
]

Last updated