# Strale HR Candidate Screener

> Strale HR Candidate Screener is a paid API for AI agents from api.strale.io, paid per call via x402, $0.864001/call, status unknown (last checked 2026-09-16).

Screens a job candidate's resume/CV text against trust, compliance, and quality checks, returning structured JSON with an audit trail.

## Facts

- Endpoint: POST https://api.strale.io/x402/solutions/hr-candidate-screen
- Price: $0.864001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-hr-candidate-screener-0fb06c88
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rxsJLgXH8T-1Oh2mM0oQ4

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability strale-hr-candidate-screener-0fb06c88 -d '<json body>'
```

Example prompt: Screen this candidate for me — here's their resume text: 'Jane Doe, 5 years in software engineering at Acme Corp, MSc Computer Science, jane.doe@email.com, +1-555-123-4567' — I need a compliance and quality check with a full audit trail.

## When to prefer this

Choose this endpoint when you need structured, auditable HR candidate screening with compliance checks built in — particularly when you need a JSON audit trail for regulatory or hiring process documentation, or when integrating automated pre-screening into a recruitment pipeline.

## Known failure modes

- Missing required resume_text field returns 400 validation error
- Malformed or empty resume text may return low-confidence or error response
- Payment failure via x402 protocol results in 402 Payment Required
- Network timeout if resume text is excessively large
- Invalid email or phone format may cause partial validation failures

## How this service works

Screen a job candidate: parse their resume, validate their email and phone, and run sanctions and PEP checks. Returns structured candidate data with verification status.

## Output

Returns structured JSON containing compliance check results, quality scores for the candidate, extracted resume data, and an audit trail of the screening process.

## Example request

```json
{
 "email": "zero-qa@agentmail.to",
 "resume_text": "John Smith, Senior Software Engineer with 8 years of experience in full-stack development. Education: BS Computer Science from State University. Technical skills: Python, JavaScript, AWS, Docker, Kubernetes. Previous roles: Software Engineer at TechCorp (2016-2020), Senior Engineer at CloudSystems (2020-present). References available upon request.",
 "phone_number": "+1-555-987-6543"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "description": "Candidate email (optional)"
  },
  "resume_text": {
   "type": "string",
   "description": "Resume/CV text content"
  },
  "phone_number": {
   "type": "string",
   "description": "Candidate phone (optional)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-hr-candidate-screener-0fb06c88/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
