Siren

Get Conversion

Retrieve a single conversion by ID with optional field selection.

Last updated: April 9, 2026

Get Conversion

GET /siren/v1/conversions/{id}

Returns a single conversion by ID.

Query Parameters

ParameterTypeDefaultDescription
fieldsstringcore fieldsComma-separated list of fields to include
includestringLegacy: extended for all available fields

Example Request

GET /siren/v1/conversions/42?fields=id,status,engagementScore,programId

Example Response

{
  "id": 42,
  "status": "pending",
  "engagementScore": 100,
  "programId": 3
}

Error Responses

Returns 404 if no record exists with that ID, or 500 on a database error.