> For the complete documentation index, see [llms.txt](https://knowledgebase.fabricdata.com/studio/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://knowledgebase.fabricdata.com/studio/integrations-and-apis/api-overview.md).

# API Overview

### Overview

The Origin Studio API allows you to programmatically access, create, update, and manage title and metadata records within Origin Studio.

Using the API, you can:

* Integrate Origin Studio with your internal systems
* Automate metadata workflows
* Synchronize catalog data
* Trigger enrichment workflows
* Extract reporting data

The API uses standard REST principles and JSON data format.

***

### Base URL

Production:

```
https://api.studio.fabricdata.com/
```

Example endpoint:

```
https://api.studio.fabricdata.com/v1/records
```

***

### API Principles

* RESTful architecture
* JSON request and response format
* HTTPS required for all requests
* Stateless communication

***

### Quick Example

```
curl https://api.studio.fabricdata.com/v1/records \
  -H "Authorization: Bearer YOUR_API_KEY"
```
