Caching

Upstash

economy

Upstash is an cost-effective caching provider offering Vector Search, Redis Commands, Message Queue through Aweb's unified API. It features none streaming support with premium-tier latency.

Try UpstashOfficial docs

Specifications

CategoryCaching
Auth Typeapi_key
Latency Tierpremium
Streamingnone
Pricing Tiereconomy
Reliabilitypremium
Qualitypremium
Base URLhttps://{endpoint}.upstash.io
SDK Package

Capabilities (3)

Vector Searchsearch.vector
Score: 85
Redis Commandscache.commands
Score: 92DEFAULT
Message Queuecache.queue
Score: 88DEFAULT

Quick start

Use Upstash through Alfred's unified API — no provider-specific SDK needed.

cURL

curl -X POST https://api.alfred-ai.app/v1/execute \
  -H "Authorization: Bearer $ALFRED_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "provider": "upstash",
    "capability": "search.vector",
    "input": { "prompt": "Hello from Upstash!" }
  }'

TypeScript

import { Alfred } from '@alfred/core';

const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });

const result = await alfred.execute({
  provider: 'upstash',
  capability: 'search.vector',
  input: { prompt: 'Hello from Upstash!' },
});

console.log(result.output);
Getting started →API reference →All capabilities →All providers →