> For the complete documentation index, see [llms.txt](https://outerbase.gitbook.io/untitled/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://outerbase.gitbook.io/untitled/outerbase-sdk.md).

# Outerbase SDK

You may have already used Outerbase to explore your data and now you're ready to discover what you can build with it. Using this SDK you can expedite your development efforts by utilizing a lot of what the platform provides.

A pre-requisite to many of the missions you will set out to accomplish will require you to have at least one database connected to [Outerbase](https://outerbase.com). Many of the core components of what is offered uses  the platforms API to succeed in its task such as database introspection generating Typescript models. You can read more about [connecting a data source](/untitled/introspection/connect-a-data-source.md) which should get you ready to continue on your journey.

At our core we aim for this SDK to be a tool for developers to quickly build their projects by offloading the creation of critical tasks such as:

* Data modeling
* Database interactions
* Edge-cached queries
* Network interactions

In each of the sections of the documentation we will go more granular in each of the features, what they do, how they work at their core, and what it takes for you to implement into your own project.

If you have any questions, you can reach us at <support@outerbase.com>

{% hint style="info" %}

#### We are open source!

Every space voyage needs a crew. The Outerbase SDK is an open source project that any human being can contribute to. Add your ideas to our [Discussions](https://github.com/outerbase/sdk/discussions), report your bugs as [Issues](https://github.com/outerbase/sdk/issues), or open your first [Pull Request](https://github.com/outerbase/sdk/pulls) to add more functionality for others.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://outerbase.gitbook.io/untitled/outerbase-sdk.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
