# Getting started

Toggle features a GraphQL API. This opens up many possibilities for developers to extend and integrate with us.

{% hint style="success" %}
Our GraphQL Endpoint is: <https://api.mytoggle.io/graphql>
{% endhint %}

### New to GraphQL?

The GraphQL data query language is:

* **A specification**. The spec determines the validity of the schema on the API server. The schema determines the validity of client calls.
* **Strongly typed.** The schema defines an API’s type system and all object relationships.
* **Introspective.** A client can query the schema for details about the schema.
* **Hierarchical.** The shape of a GraphQL call mirrors the shape of the JSON data it returns. Nested fields let you query for and receive only the data you specify in a single round trip.
* **An application layer.** GraphQL is not a storage model or a database query language. The graph refers to graph structures defined in the schema, where nodes define objects and edges define relationships between objects. The API traverses and returns application data based on the schema definitions, independent of how the data is stored.

For more information about GraphQL, refer to the [documentation provided](https://graphql.org/learn/) on the official GraphQL website.

### Can I use GraphQL with in my current technology stack?

GraphQL is widely supported, and there are several [server libraries available](https://graphql.org/code/) to help you get started.


---

# 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://developers.usetoggle.com/graphql/getting-started.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.
