# TalentPulse Remote Compliance Intelligence

> TalentPulse Remote Compliance Intelligence is a paid API for AI agents from talentpulse-six.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-13).

Returns jurisdiction-specific legal intelligence for hiring remote employees globally, covering permanent-establishment risk, contractor classification, mandatory obligations, EOR viability, and recommended structures across 60+ countries.

## Facts

- Endpoint: GET https://talentpulse-six.vercel.app/api/talent/remote-compliance
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/talentpulse-remote-compliance-intelligence-e11f5d89
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3mtZ2EU1vkFxEocOHBye7

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 talentpulse-remote-compliance-intelligence-e11f5d89
```

Example prompt: What are the permanent establishment risks and recommended hiring structure if we bring on a remote employee in Germany — should we use an EOR, set up a local entity, or hire them as a contractor?

## When to prefer this

Use this endpoint when an HR, hiring, or compliance agent needs actionable, jurisdiction-specific legal guidance for onboarding a remote worker in a foreign country — especially when evaluating contractor classification risk, permanent establishment exposure, or whether to use an employer-of-record. Prefer this over generic legal search tools when you need structured, country-specific output ready for agent consumption across 60+ jurisdictions.

## Known failure modes

- Country not covered in the 60+ supported jurisdictions — returns unsupported jurisdiction error
- Missing or invalid country parameter — returns 400 bad request
- Payment not processed or insufficient balance — returns 402 payment required
- Rate limit exceeded — returns 429 too many requests
- Stale or unavailable legal data for jurisdiction — returns partial result with data freshness warning

## How this service works

Remote-hire compliance and employment-law intelligence by country — permanent-establishment (PE) risk, contractor vs employee classification, mandatory employer obligations, EOR viability, and recommended hiring structure for employing remote workers abroad. 60+ countries for HR-compliance and global-hiring agents. 10 languages.

## Output

Returns a structured legal intelligence report for the specified country including: permanent establishment risk level and triggers, contractor vs. employee classification guidance, mandatory employer obligations (benefits, taxes, social contributions), EOR viability rating, and the recommended hiring structure with reasoning.

## 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": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | zh | ko | pt | ar | hi (default: en)"
      },
      "country": {
       "type": "string",
       "description": "Country where remote employee is located — e.g. \"Germany\" | \"Brazil\" | \"India\" | \"Philippines\" | \"Canada\" | \"Spain\""
      },
      "nationality": {
       "type": "string",
       "description": "Nationality of the remote employee — optional context (default: any)"
      },
      "company_country": {
       "type": "string",
       "description": "Where the employer entity is based — optional, affects PE analysis"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "country": "Germany",
  "eor_viability": {
   "recommended": true,
   "monthly_fee_range_usd": "$599-$849/month"
  },
  "overall_risk_level": "high",
  "recommended_structure": "EOR required for sustained engagement. Contractor model risky after 6 months due to Scheinselbstständigkeit (false self-employment) rules.",
  "permanent_establishment_risk": {
   "level": "high",
   "triggers": [
    "Employee has authority to sign contracts",
    "Employee works exclusively for one employer"
   ],
   "safe_duration_days": null
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/talentpulse-remote-compliance-intelligence-e11f5d89/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from talentpulse-six.vercel.app](https://www.zero.xyz/host/talentpulse-six.vercel.app/llms.txt)
