---
title: "sendAudio"
method: POST
path: "/bot{token}/sendAudio"
---

# sendAudio

`POST /bot{token}/sendAudio`

Use this method to send audio files, if you want Telegram clients to display them in the music player.

## Path parameters

- `token` string, required

## Request body

- object
  - `chat_id` string — Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
  - `audio` string — Audio file to send. You can either pass a *file_id* as String to [resend](https://core.telegram.org/bots/api#resending-files-without-reuploading) an audio that is already on the Telegram servers, or upload a new audio file by just passing the path to audio file as String and the SDK will take care of uploading the file for you.
  - `duration` integer — Duration of the audio in seconds
  - `performer` string — Performer
  - `track` string — Track name
  - `disable_notification` boolean — Sends the message [silently](https://telegram.org/blog/channels-2-0#silent-messages). iOS users will not receive a notification, Android users will receive a notification with no sound. Other apps coming soon.
  - `reply_to_message_id` integer — If the message is a reply, ID of the original message
  - `reply_markup` object — Additional interface options. A JSON-serialized object for a [custom reply keyboard](doc:keyboards), instructions to hide keyboard or to force a reply from the user.

## Response `200`

200

- object
  - `ok` boolean
  - `result` object
    - `message_id` integer
    - `from` object
      - `id` integer
      - `first_name` string
      - `username` string
    - `chat` object
      - `id` integer
      - `first_name` string
      - `last_name` string
      - `username` string
      - `type` string
    - `date` integer
    - `audio` object
      - `file_id` string
      - `duration` integer
      - `mime_type` string
      - `title` string
      - `performer` string
      - `file_size` integer

## Other responses

- `400` — 400

---

[API](https://skmtc.net/telegram/apis/api-settings.md) · [All operations](https://skmtc.net/telegram/apis/api-settings/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/telegram/api-settings/versions/1933ff0a8d5f/schema)
