Retrieve an Event Attachment

GET /api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/events/{event_id}/attachments/{attachment_id}/

Retrieve metadata for a single attachment on an event.

Requires the event-attachments organization feature.

Path Parameters

organization_id_or_slug (string)
REQUIRED

The ID or slug of the organization the resource belongs to.

project_id_or_slug (string)
REQUIRED

The ID or slug of the project the resource belongs to.

event_id (string)
REQUIRED

The ID of the event. It is a 32-character hexadecimal string as reported by the client.

attachment_id (string)
REQUIRED

The numeric ID of the attachment, as returned from the attachments list endpoint.

Scopes

<auth_token> requires one of the following scopes:
  • project:admin
  • project:read
  • project:write
Copied
curl https://sentry.io/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/events/{event_id}/attachments/{attachment_id}/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
Copied
{ "id": "1234", "event_id": "9b29bbe17e9d4ee3a6d0fe9b2e8a3b1c", "type": "event.attachment", "name": "screenshot.png", "mimetype": "image/png", "dateCreated": "2026-04-15T18:22:31Z", "size": 248137, "headers": { "Content-Type": "image/png" }, "sha1": "d3f299af02d6abbe92dd8368bab781824a9702ed" }
Was this helpful?