Available Actions
upsertquerydeletedescribe
Input Schema
{
"type": "object",
"required": [
"namespace"
],
"properties": {
"top_k": {
"type": "number"
},
"vectors": {
"type": "array"
},
"namespace": {
"type": "string"
}
}
}Output Schema
{
"type": "object",
"properties": {
"matches": {
"type": "array"
},
"namespace": {
"type": "string"
}
}
}Quick Start
API Endpoint
POST /api/execute/vector-databasecURL Example
curl -X POST \
https://api.nulayers.com/execute/vector-database \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "upsert"}'