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

# Delogue Nexos API

> REST API for building integrations and automations on the Delogue PLM platform.

## Overview

The Delogue API lets external developers build integrations and automations against
the Delogue PLM platform — styles, items, colors, suppliers, and more.

It is a RESTful, JSON API. Every response uses a small, consistent envelope, and
filtering, sorting, and pagination follow the same conventions across all resources.

<Note>
  This portal documents the **public** Delogue API.
</Note>

## Base URLs

Pick the environment that matches your data:

| Environment           | Base URL                               |
| --------------------- | -------------------------------------- |
| Production            | `https://service.my.delogue.com/`      |
| Staging (for testing) | `https://service.staging.delogue.com/` |

Append the path from the API reference, e.g. `GET https://service.staging.delogue.com/api/styles`.

## Quickstart

<Steps>
  <Step title="Get an API key">
    See [Authentication](/authentication) to create a key from your Delogue profile.
  </Step>

  <Step title="Make a request">
    Send the key in the `X-Auth-Token` header. Try `GET /api/colors`.
  </Step>

  <Step title="Read the response">
    Responses use the [standard envelope](/concepts/errors) — `status`, `code`, `data`.
  </Step>
</Steps>

```bash theme={"dark"}
curl "https://service.staging.delogue.com/api/colors" \
  -H "Accept: application/json" \
  -H "X-Auth-Token: Bearer YOUR_API_KEY"
```

## Help & support

<CardGroup cols={2}>
  <Card title="Knowledge Base" href="https://knowledge.delogue.com/" icon="book-open">
    Product guides and how-tos for the Delogue platform.
  </Card>

  <Card title="Contact support" href="https://knowledge.delogue.com/how-to-get-support" icon="life-ring">
    How to reach the Delogue support team.
  </Card>
</CardGroup>
