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

# Overview

> Get started with the Fibery GraphQL API.

The Fibery GraphQL API provides a way to integrate Fibery with your external systems and automate routine tasks. It's capable of performing most of the tasks at hand:

* Read, create, update and delete Entities in Databases.
* Execute a variety of additional actions.
* Work with rich text Fields.

<Callout icon="https://cdn.jsdelivr.net/gh/jdecked/twemoji@latest/assets/svg/2b50.svg" color="#6A849B">
  You can find more information about GraphQL basics [by this link](https://graphql.org/?utm_source=Fibery\&utm_medium=iframely "https://graphql.org/?utm_source=Fibery\&utm_medium=iframely").
</Callout>

<Callout icon="https://cdn.jsdelivr.net/gh/jdecked/twemoji@latest/assets/svg/1f4a1.svg" color="#d40915">
  Non-ASCII or non-English characters in field or database names will be transliterated to English.
</Callout>

Every Fibery Space has its own GraphQL endpoint, which can be found at `https://YOUR_ACCOUNT.fibery.io/api/graphql/space/YOUR_SPACE`

or the list of all your space's end-points can be found at `https://YOUR_ACCOUNT.fibery.io/api/graphql`

<img src="https://mintcdn.com/fibery/lUFkgk4SW9_Hi0iL/images/3be3149e-2dac-4f53-8c03-941d47fdb332.png?fit=max&auto=format&n=lUFkgk4SW9_Hi0iL&q=85&s=1108db9339bd3f638d03179968c0986a" alt="image.png" width="994" height="612" data-path="images/3be3149e-2dac-4f53-8c03-941d47fdb332.png" />

By opening space's end-point in your browser you will find a graphical interactive in-browser GraphQL IDE. Here you can explorer space's GraphQL documentation and execute your GraphQL queries.

<img src="https://mintcdn.com/fibery/lUFkgk4SW9_Hi0iL/images/1d805e39-2df6-4f45-a193-f6f9d488eb3e.gif?s=41aea471af8d4fde1d40f3661f246cf3" alt="g-explorer-68787e96.gif" width="2110" height="1448" data-path="images/1d805e39-2df6-4f45-a193-f6f9d488eb3e.gif" />

To read or edit data, you need to send a POST JSON request to the `https://YOUR_ACCOUNT.fibery.io/api/graphql/space/YOUR_SPACE` endpoint from your code.
