# Deepfake Audio

#### Endpoint

```bash
POST https://cloud.ooto-ai.com/api/v1.0/audio/deepfake
```

#### Request Format

* Method: POST
* Content-Type: multipart/form-data

#### Authentication Headers

To access the API, you need to include the following headers in your request:

* APP-ID: Your application's unique identifier.
* APP-KEY: Your application's authentication key.

#### Form Data

| Field | Type | Required | Description                                         |
| ----- | ---- | -------- | --------------------------------------------------- |
| audio | File | Yes      | audio/wav, application/ogg, audio/mpeg, audio/x-wav |

#### Example Request (cURL)

```bash
curl -X POST "https://cloud.ooto-ai.com/api/v1.0/audio/deepafake" \
  -H "app-id: <APP_ID>" \
  -H "app-key: <APP_KEY>" \
  -F "video=@/path/to/audio.wav"
```

Replace «app\_id», «app\_key» with your actual credentials and the path to your audio file.

#### Successful Response (HTTP 200)

```json
{
  "transactionId": "3d9b9f4e-2f4d-47ff-8c9c-1f3f8cf1babc",
  "result": {
    "deepfake": {
      "score": 0.11609,
      "fine": false
    }
  }
}
```
