# Developer Platform API

The Duvo Developer Platform API lets you drive Duvo from your own code, scripts, and pipelines. Use it to automate core team workflows and integrate Duvo with the systems your team already runs on.

With the API, you can:

* Start Jobs
* Manage Assignments
* Review Cases
* Move Files in and out of Duvo
* Manage Connections

## Authentication

The API authenticates requests with an API key.

1. Generate a key in the Duvo dashboard at [Team Settings → API Keys](https://app.duvo.ai/settings/api-keys).
2. Send the key as a bearer token on every request:

   ```
   Authorization: Bearer <your-api-key>
   ```

API keys are scoped to a single team and inherit the permissions of the user who generated them.


---

# 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.duvo.ai/api-reference/readme.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.
