> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pixeltable.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Cloud Offering

> Endpoints, storage, and collaboration via Pixeltable Cloud

Pixeltable Cloud extends the local SDK with team collaboration and production deployment capabilities.

***

## 1. Endpoints

Self-hosted HTTP serving is available now. Cloud deployment with managed hosting is coming soon.

| Feature                                                        | Status         | What                                                       |
| -------------------------------------------------------------- | -------------- | ---------------------------------------------------------- |
| [`pxt serve`](/howto/deployment/serving)                       | ✅ Available    | TOML-configured HTTP endpoints with CLI                    |
| [`FastAPIRouter`](/howto/deployment/serving#quickstart-python) | ✅ Available    | Declarative routes in Python, drop-in `APIRouter` subclass |
| Background jobs                                                | ✅ Available    | `background=True` on any route                             |
| `pxt deploy`                                                   | 🔜 Coming Soon | Cloud deployment with auto-scaling                         |
| Pre-signed URLs                                                | 🔜 Coming Soon | Media access without proxying                              |

<Card title="HTTP Serving Guide" icon="globe" href="/howto/deployment/serving">
  TOML config, CLI, Python API, and background jobs for self-hosted deployments
</Card>

<Info>
  [Join the waitlist](https://www.pixeltable.com/waitlist) to get early access to cloud-managed Endpoints.
</Info>

***

## 2. Cloud Storage ✅ Available Now

Every Pixeltable Cloud account includes a free managed storage bucket for media files. No cloud provider account or bucket configuration required.

| Feature          | What                                                      |
| ---------------- | --------------------------------------------------------- |
| Home bucket      | Free R2-backed storage for computed and input media       |
| Auto credentials | Temporary credentials fetched and refreshed automatically |
| Quota management | Built-in storage limits with clear error messages         |

```python theme={"theme":{"light":"light-plus","dark":"dark-plus"}}
# Use your free cloud bucket as a media destination
t.add_computed_column(
    thumbnail=t.photo.resize((256, 256)),
    destination='pxtfs://myorg:mydb/home'
)
```

<Card title="Cloud Storage Setup" icon="cloud" href="/integrations/cloud-storage#pixeltable-cloud-home-bucket">
  Configuration guide for the free managed bucket
</Card>

***

## 3. Live Tables 🔜 Coming Soon

Multi-writer collaboration and serverless compute.

| Feature            | What                                   |
| ------------------ | -------------------------------------- |
| Multi-writer       | Team collaboration on shared tables    |
| Serverless compute | Auto-scaling without infrastructure    |
| UDF versioning     | Safe experimentation with code changes |
| RBAC + audit       | Governance and compliance              |

***

## Unified: Where It's All Going

When all three cloud services are available, the two use cases converge:

* **Data wrangling + AI pipelines + endpoints = one system**
* **Orchestration + storage + retrieval unified**
* **Table becomes the endpoint**

Your training datasets and production APIs share the same infrastructure—versioning, lineage, and retrieval in the serving path.

<Card title="Book a Demo" icon="calendar" href="https://calendar.google.com/calendar/u/0/appointments/schedules/AcZssZ0BSvx8SRh7HoLdgvGeYUuhdyaifN42nhieCJESo3B1Hmy_buqteAagnSwADXG1lhKFUg3_VTZM">
  Schedule time with our team to discuss your use case
</Card>
