# Strale Work Permit Requirements Lookup

> Strale Work Permit Requirements Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0216/call, status unknown (last checked 2026-09-14).

Returns work permit and visa requirements for a given nationality traveling to a destination country for a specified purpose.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/work-permit-requirements
- Price: $0.0216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-work-permit-requirements-lookup-cc13ec1f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__EYDtPEjkUb2mDWOy7Vhi

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-work-permit-requirements-lookup-cc13ec1f
```

Example prompt: What work permit or visa does a US citizen need to legally work in Germany — I'm looking for employment, not just a short business trip?

## When to prefer this

Choose this endpoint when you need structured, independently tested work permit requirement data for a specific nationality/destination country pair, especially when auditability and compliance traceability matter (e.g. HR workflows, legal tech, immigration tools). Prefer it over scraping government websites when you need consistent, machine-readable output with a cryptographic audit trail. Best suited for point-in-time lookups rather than monitoring regulatory changes over time.

## Known failure modes

- Missing required parameters (nationality or destination country code) returns a 400 validation error
- Unsupported or unrecognized country codes return an error or empty result
- Country pair not covered in the 27-country dataset returns no data
- Payment failure or insufficient USDC balance returns a 402 Payment Required response
- Rate limiting or network timeouts may cause transient failures

## How this service works

Check work permit requirements by nationality and destination. Covers EU free movement, Schengen, Nordic rules.

## Output

A structured response detailing the work permit and visa requirements applicable to the specified nationality/destination pair, including required permit types, eligibility criteria, documentation needed, and any purpose-specific rules. Each call includes a cryptographic audit record with chain hashing for compliance traceability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "destination",
  "nationality"
 ],
 "properties": {
  "purpose": {
   "type": "string"
  },
  "destination": {
   "type": "string",
   "description": "Country code"
  },
  "nationality": {
   "type": "string",
   "description": "Country code"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "permit_type": {
  "type": "string"
 },
 "free_movement": {
  "type": "boolean"
 },
 "visa_required": {
  "type": "boolean"
 },
 "eu_blue_card_eligible": {
  "type": "boolean"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-work-permit-requirements-lookup-cc13ec1f/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)
