# What is Deepomatic API?

The Deepomatic API is organised around REST. Our API has predictable, resource-oriented URLs, and uses HTTP response codes to indicate API errors. We use built-in HTTP features, like HTTP authentication and HTTP verbs, which are understood by off-the-shelf HTTP clients.

We support cross-origin resource sharing, allowing you to interact securely with our API from a client-side web application (though you should never expose your secret admin API key in any public website's client-side code).

JSON is returned by all API responses, including errors, although our API libraries convert responses to appropriate language-specific objects.

{% hint style="danger" %}
**IMPORTANT:** The API only allow to send data with a Content-Type `application/json` or `multipart/form-data`. If you try to send `application/x-www-form-urlencoded` you will receive a `415` status code.
{% endhint %}

Deepomatic API currently has one supported [client in python](https://github.com/Deepomatic/deepomatic-client-python).

{% code title="API Endpoint" %}

```bash
https://api.deepomatic.com/v0.7
```

{% endcode %}


---

# Agent Instructions: 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://docs.deepomatic.com/deepomatic-api-v0.7/master.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.
