Saltar al contenido principal
GET
/
conversions
List conversion events
curl --request GET \
  --url https://api.getnexor.ai/api/public/conversions \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "conversion_events": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "conversion_type_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "lead_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "amount": 123,
      "currency": "<string>",
      "converted_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z",
      "workflow_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "master_workflow_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "workflow_run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "metadata": {},
      "notes": "<string>",
      "conversion_types": {
        "name": "<string>",
        "fields": [
          {
            "key": "property_unit",
            "label": "Property / Unit",
            "type": "text"
          }
        ]
      }
    }
  ],
  "total": 123
}

Autorizaciones

X-API-Key
string
header
requerido

API key for authentication. Keys are prefixed with nxr_live_.

Parámetros de consulta

lead_id
string<uuid>

Filter by lead ID

workflow_id
string<uuid>

Filter by workflow ID

master_workflow_id
string<uuid>

Filter by master workflow ID

workflow_run_id
string<uuid>

Filter by workflow run ID

conversion_type_id
string<uuid>

Filter by conversion type ID

limit
integer
predeterminado:50

Maximum number of results (default: 50, max: 200)

Rango requerido: x <= 200
offset
integer
predeterminado:0

Pagination offset

Respuesta

Successful response

success
boolean
requerido
Ejemplo:

true

conversion_events
object[]
requerido
total
integer
requerido

Total number of matching conversion events

Última modificación el 18 de junio de 2026