> For the complete documentation index, see [llms.txt](https://developers.myscreators.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.myscreators.com/en/readme.md).

# M\&S CRM REST API

Integrate your software with the M\&S Creators CRM: clients, leads, projects, tickets and invoices.

Welcome to the official documentation for the **M\&S Creators CRM API**. Use it to programmatically manage **clients, leads, projects, support tickets and invoices**.

The API runs over **HTTPS**, returns **JSON**, and follows REST conventions: standard HTTP methods and status codes, with token authentication.

{% hint style="info" %}
**Base URL**

```
https://crm.myscreators.com/index.php/api
```

{% endhint %}

## Get started in 2 minutes

{% stepper %}
{% step %}

### Get your token

Every request is authenticated with the `authtoken` header, bound to your M\&S installation. See [Authentication](/en/getting-started/authentication.md).
{% endstep %}

{% step %}

### Make your first call

```bash
curl -H "authtoken: YOUR_TOKEN" \
  "https://crm.myscreators.com/index.php/api/tickets"
```

{% endstep %}

{% step %}

### Explore the modules

Browse the [endpoint reference](/en/api-reference.md) by resource.
{% endstep %}
{% endstepper %}

## Getting started

<table data-view="cards"><thead><tr><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><strong>Introduction</strong></td><td>What the API is and how it works.</td><td><a href="/en/getting-started/introduction.md">Introduction</a></td></tr><tr><td><strong>Authentication</strong></td><td>The <code>authtoken</code> header.</td><td><a href="/en/getting-started/authentication.md">Authentication</a></td></tr><tr><td><strong>Conventions</strong></td><td>Formats, multipart and routes.</td><td><a href="/en/getting-started/conventions.md">Conventions</a></td></tr><tr><td><strong>Errors</strong></td><td>Status codes and messages.</td><td><a href="/en/getting-started/errors.md">Errors &amp; status codes</a></td></tr></tbody></table>

## API modules

<table data-view="cards"><thead><tr><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><strong>Clients</strong></td><td>Create, retrieve, delete and search.</td><td><a href="/en/api-reference/clients.md">Clients</a></td></tr><tr><td><strong>Leads</strong></td><td>Prospects and their lifecycle.</td><td><a href="/en/api-reference/leads.md">Leads</a></td></tr><tr><td><strong>Projects</strong></td><td>List, create, update and search.</td><td><a href="/en/api-reference/projects.md">Projects</a></td></tr><tr><td><strong>Tickets</strong></td><td>Support from start to finish.</td><td><a href="/en/api-reference/tickets.md">Tickets</a></td></tr><tr><td><strong>Invoices</strong></td><td>Create and search invoices.</td><td><a href="/en/api-reference/invoices.md">Invoices</a></td></tr><tr><td><strong>Helpers</strong></td><td>Groups, labels, taxes, members and contacts.</td><td><a href="/en/api-reference/helpers.md">Helpers</a></td></tr></tbody></table>


---

# 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://developers.myscreators.com/en/readme.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.
