# Consuming Substreams

Once you find a package that fits your needs, you can choose how you want to consume the data. Sinks are integrations that allow you to send the extracted data to different destinations, such as a SQL database, or a file.

{% hint style="info" %}
**Note**: Some of the sinks are officially supported by StreamingFast (i.e. active support is provided), but other sinks are community-driven and support can't be guaranteed.
{% endhint %}

* [SQL Database](https://docs.substreams.dev/how-to-guides/sinks/sql): Send the data to a database.
* [Direct Streaming](https://docs.substreams.dev/how-to-guides/sinks/stream): Stream data directly from your application.
* [PubSub](https://docs.substreams.dev/how-to-guides/sinks/pubsub): Send data to a PubSub topic.
* [Community Sinks](https://github.com/streamingfast/substreams/blob/develop/docs/how-to-guides/sinks/community/README.md): Explore quality community maintained sinks.

{% hint style="success" %}
**Deployable Service**: If you’d like your sink (e.g., SQL or PubSub) to be hosted for you, reach out to the StreamingFast team [here](mailto:sales@streamingfast.io).
{% endhint %}

### Navigating Sink Repos

#### Official

| Name        | Support | Maintainer    | Source Code                                                                                          |
| ----------- | ------- | ------------- | ---------------------------------------------------------------------------------------------------- |
| SQL         | O       | StreamingFast | [substreams-sink-sql](https://github.com/streamingfast/substreams-sink-sql)                          |
| Go SDK      | O       | StreamingFast | [substreams-sink](https://github.com/streamingfast/substreams-sink)                                  |
| Rust SDK    | O       | StreamingFast | [substreams-sink-rust](https://github.com/streamingfast/substreams-sink-rust)                        |
| JS SDK      | O       | StreamingFast | [substreams-js](https://github.com/substreams-js/substreams-js)                                      |
| KV Store    | O       | StreamingFast | [substreams-sink-kv](https://github.com/streamingfast/substreams-sink-kv)                            |
| PubSub      | O       | StreamingFast | [substreams-sink-pubsub](https://github.com/streamingfast/substreams-sink-pubsub)                    |
| ProtoJSON   | O       | StreamingFast | [substreams-sink-protojson](https://github.com/streamingfast/substreams/tree/develop/sink/protojson) |
| Webhook     | O       | StreamingFast | [substreams-sink-webhook](https://github.com/streamingfast/substreams/tree/develop/sink/webhook)     |
| Noop        | O       | StreamingFast | [substreams-sink-noop](https://github.com/streamingfast/substreams/tree/develop/sink/noop)           |
| Prometheus  | O       | Pinax         | [substreams-sink-prometheus](https://github.com/pinax-network/substreams-sink-prometheus)            |
| Webhook(JS) | O       | Pinax         | [substreams-sink-webhook](https://github.com/pinax-network/substreams-sink-webhook)                  |
| CSV         | O       | Pinax         | [substreams-sink-csv](https://github.com/pinax-network/substreams-sink-csv)                          |

#### Community

| Name       | Support | Maintainer | Source Code                                                                               |
| ---------- | ------- | ---------- | ----------------------------------------------------------------------------------------- |
| MongoDB    | C       | Community  | [substreams-sink-mongodb](https://github.com/streamingfast/substreams-sink-mongodb)       |
| Files      | C       | Community  | [substreams-sink-files](https://github.com/streamingfast/substreams-sink-files)           |
| KV Store   | C       | Community  | [substreams-sink-kv](https://github.com/streamingfast/substreams-sink-kv)                 |
| Prometheus | C       | Community  | [substreams-sink-Prometheus](https://github.com/pinax-network/substreams-sink-prometheus) |

* O = Official Support (by one of the main Substreams providers)
* C = Community Support


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.substreams.dev/how-to-guides/sinks.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
