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

# REST API

{% hint style="info" %}
**Note:** Our JavaScript API is currently in beta. If something isn't working as you'd expect, please drop us a line and let us know! [support@crmgrow.com](mailto:support@crmgrow.com?subject=Developer%20Documentation)
{% endhint %}

## Authentication

All API requests require authentication with [ACCESS TOKEN](/authentication.md). Provide your API Secret as the basic auth `username` value. You do not need to provide a password.

```
curl https://api.crmgrow.com/api/user -H "Authorization:ACCESS_TOKEN"
```

## Request and Response Formats

CRMGrow will provide a JSON-based REST API through which users can create and update contacts. Endpoints accept [form-encoded](https://en.wikipedia.org/wiki/POST_\(HTTP\)#Use_for_submitting_web_forms) request bodies and return [JSON-encoded](http://www.json.org/) responses.

Dates and times in the CRMGrow API are represented as [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatted strings.


---

# 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:

```
GET https://developer.crmgrow.com/rest.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.
