Vector database for AI applications
Store and query vector embeddings at scale with Pinecone. Ideal for RAG pipelines and semantic search in AI agents.
Use Pinecone through Keystore with zero code changes. Keys are resolved from the vault and injected at request time.
import Keystore from "@keystore/sdk";
const ks = new Keystore({ agentToken: process.env.KS_TOKEN! });
ks.interceptAll();
// Query vectors through the Keystore proxy
const res = await fetch(
"https://my-index.svc.pinecone.io/query",
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
vector: [0.1, 0.2, 0.3],
topK: 10,
includeMetadata: true,
}),
}
);
const results = await res.json();Request access and our concierge team will provision credentials for you — usually within 24 hours. No setup on your end.
Request Access