Download OpenAPI specification:
API-first lead scoring service that simplifies lead quality assessment
Evaluates lead quality and returns the score immediately
required | object (ScoringInput) Input data for scoring a lead |
{- "input": {
- "name": "John Doe",
- "phone": "+15551234567",
- "domain": "example.com"
}
}
{- "result": {
- "score": 85,
- "signals": [
- {
- "type": "EMAIL_FORMAT",
- "confidence": 0.95,
- "message": "Valid email format detected"
}
], - "reliability": 0.75,
- "warnings": [
- "string"
]
}
}
Evaluates lead quality in the background and returns a runId to check the status later
required | object (ScoringInput) Input data for scoring a lead |
{- "input": {
- "name": "John Doe",
- "phone": "+15551234567",
- "domain": "example.com"
}
}
Retrieves information about a specific scoring run
id required | string Scoring run ID |
{- "id": "8fX2bZq9pL7",
- "mode": "SYNC",
- "status": "DONE",
- "input": {
- "name": "John Doe",
- "phone": "+15551234567",
- "domain": "example.com"
}, - "result": {
- "score": 85,
- "signals": [
- {
- "type": "EMAIL_FORMAT",
- "confidence": 0.95,
- "message": "Valid email format detected"
}
], - "reliability": 0.75,
- "warnings": [
- "string"
]
}
}