Welcome to Spice.ai | Spice.ai Cloud Documentation

For the complete documentation index, see llms.txt. This page is also available as Markdown.

The Spice.ai Cloud Platform is an AI application and agent cloud — an AI-backend-as-a-service with composable, ready-to-use building blocks including high-speed SQL query, LLM inference, vector search, and RAG, built on cloud-scale, managed Spice.ai OSS.

This documentation covers the Spice.ai Cloud Platform.

For the self-hostable Spice.ai OSS runtime, visit docs.spiceai.org.


Get Started

Sign up and run your first query in minutes


Federated SQL Query

Query across any data source with one SQL interface


AI Gateway

OpenAI-compatible API for LLM inference


Search & Retrieval

Vector and hybrid search for RAG workflows


Data Connectors

Connect to 30+ databases, warehouses, and lakes


Monitoring

Observe performance with Grafana, Datadog, and more

What You Can Do

With the Spice.ai Cloud Platform you can:

Use Cases

Use Case

Description

Quick Start

Get up and running in minutes:

  1. Sign in with GitHub
  2. Create a Spice app
  3. Add a dataset and query data
  4. Add an AI model and chat

Code Example

from spicepy import Client

client = Client("YOUR_API_KEY")
reader = client.query(
    "SELECT * FROM my_table LIMIT 10"
)
df = reader.read_pandas()
print(df)

Community & Support