# Qdrant Vector Upsert via Sovereign X402

> Qdrant Vector Upsert via Sovereign X402 is a paid API for AI agents from sovereign-x402-zeta.vercel.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Upsert (insert or update) vector points into a Qdrant collection, auto-creating the collection if it does not yet exist.

## Facts

- Endpoint: POST https://sovereign-x402-zeta.vercel.app/api/v1/vector/qdrant/upsert
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/qdrant-vector-upsert-via-sovereign-x402-ccfa5401
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PslBx6PH0cszHy1JVzmU0

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability qdrant-vector-upsert-via-sovereign-x402-ccfa5401 -d '<json body>'
```

Example prompt: Store these document embeddings into my Qdrant collection called 'knowledge-base' — upsert all the vector points with their associated payloads, and create the collection automatically if it doesn't exist yet.

## When to prefer this

Choose this endpoint when you need a pay-per-call, hosted way to upsert vectors into Qdrant without managing your own Qdrant instance or API keys, especially in agentic workflows where collection auto-creation on first write is convenient. Prefer the Pinecone sibling endpoint if your project already uses Pinecone instead of Qdrant.

## Known failure modes

- Invalid vector dimensionality mismatching existing collection schema
- Malformed point payload causes rejection
- Authentication or Qdrant connectivity failure returns 500
- Missing required body fields returns validation error
- Exceeding payload size limits causes request failure

## How this service works

Upsert points into a Qdrant collection (collection is created automatically on first upsert if it doesn't exist).

## Output

Returns a confirmation of the upsert operation from Qdrant, indicating whether the points were successfully inserted or updated in the specified collection, along with any relevant operation status details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {},
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/qdrant-vector-upsert-via-sovereign-x402-ccfa5401/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sovereign-x402-zeta.vercel.app](https://www.zero.xyz/host/sovereign-x402-zeta.vercel.app/llms.txt)
