Skip to main content
GET
/
v1
/
emails
/
{id}
/
attachments
List attachments
curl --request GET \
  --url https://api.drin.run/v1/emails/{id}/attachments \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "filename": "<string>",
      "contentType": "<string>",
      "size": 123,
      "url": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://drin.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your Drin API key, sent as Authorization: Bearer <key>.

Path Parameters

id
string
required

Response

200 - application/json

Attachment metadata. Download bytes with an authenticated GET on each url.

data
object[]