# Getting Started

## YuuDrive API

Base-URL for our API is

```http
https://api.yuudrive.me/v1/
```

Please make sure to use the API with `https` only, `http` requests will result in a `HTTP 302` redirect to `https`.

You can get the API Key here <https://yuudrive.me/account>

&#x20;Response is `json`, structure is as follows

```javascript
{
    "code": {status code},
    "message": "{message}",
    "result": "{result of the request}"
}
```

**Status Code**

| Code | Description                         |
| ---- | ----------------------------------- |
| 200  | Everything is OK. Request succeeded |
| 400  | Bad request (e.g. wrong parameters) |
| 403  | Forbidden                           |
| 401  | Unauthenticated. Require an API key |
| 404  | Resource not Found                  |


---

# 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://api-docs.yuudrive.me/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.
