# Strale Job Posting Analyzer

> Strale Job Posting Analyzer is a paid API for AI agents from api.strale.io, paid per call via x402, $0.216/call, status unknown (last checked 2026-09-15).

Analyzes a job posting URL or text to extract structured insights, detect red flags, and assess quality and legitimacy of the listing.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/job-posting-analyze
- Price: $0.216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-job-posting-analyzer-1af647a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3EHigAiEaMY51IDvJv_DS

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-job-posting-analyzer-1af647a7
```

Example prompt: Can you analyze this job posting — https://example.com/jobs/senior-engineer — and tell me if it looks legitimate, what the key requirements are, and whether there are any red flags I should know about?

## When to prefer this

Choose this endpoint when you need to assess the trustworthiness, completeness, or authenticity of a job listing — especially when screening for scams, extracting structured HR data at scale, or building a recruiting pipeline that requires audit trails. The cryptographic audit record makes it particularly valuable in compliance or trust-sensitive workflows where provenance matters.

## Known failure modes

- URL is inaccessible or returns a 404 — analysis cannot be completed
- Neither url nor text query parameter provided — returns validation error
- Job posting page is behind a login wall or CAPTCHA — content cannot be fetched
- Text input is too short or malformed to extract meaningful signal
- Rate limiting or payment failure via x402 micropayment protocol

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

A structured JSON analysis of the job posting including extracted fields (role, skills, location, salary, company), a quality or completeness score, detected red flags or anomalies, legitimacy indicators, and a cryptographically chained audit record for traceability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string"
      },
      "text": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-job-posting-analyzer-1af647a7/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)
