Get Media

get/v1/media/{media_id}

Fetches a single media row by id from the records pipeline, scoped to the workspace. Read-only; no side effects. 404 when absent or out of scope.

Requires a bearer token: Authorization: Bearer <token>.

Path parameters

NameTypeRequiredDescription
media_idstring <uuid>YesPublic UUID of the media item.e.g. 2c3d4e5f-6071-4829-93a4-b5c6d7e8f9a1

Query parameters

NameTypeRequiredDescription
workspaceIdstring <uuid>NoWorkspace to scope to; defaults to the token's workspace.e.g. 8f6b2c10-4a1e-4d2b-9c3a-1f0e7a5b6c21

Request

cURL
curl -X GET https://api.wellapp.ai/v1/media/{media_id} \
  -H "Authorization: Bearer $WELL_API_TOKEN"

Responses

200The media row.

{
  "data": {
    "type": "media",
    "id": "2c3d4e5f-6071-4829-93a4-b5c6d7e8f9a1",
    "attributes": {
      "media_type": "logo",
      "label": "Foldspace logo",
      "url": "https://media.wellapp.ai/ws/foldspace-logo.png",
      "created_at": "2026-01-12T09:35:00.000Z"
    }
  }
}

401Unauthorized

{
  "code": "UNAUTHORIZED",
  "status": 401,
  "title": "Unauthorized",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

403Forbidden

{
  "code": "FORBIDDEN",
  "status": 403,
  "title": "Forbidden",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

404Not Found

{
  "code": "NOT_FOUND",
  "status": 404,
  "title": "Not Found",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}