# LinkedIn URL Validator

> LinkedIn URL Validator is a paid API for AI agents from api.strale.io, paid per call via x402, $0.01/call, status down (last checked 2026-09-14).

Validates the format of a LinkedIn profile, company, or job URL and checks whether it is accessible, returning the URL type, slug, and normalized URL.

## Facts

- Endpoint: POST https://api.strale.io/x402/linkedin-url-validate
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-79aa4318
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5_1qRM_gfEWDvDqCSFP0Y

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 api-strale-io-79aa4318 -d '<json body>'
```

Example prompt: Can you check if this LinkedIn URL is valid and accessible, and tell me what type it is (profile, company, or job): https://www.linkedin.com/in/jane-doe-12345/?

## When to prefer this

Use this endpoint when you need to programmatically verify that a LinkedIn URL is properly formed before storing it in a database, sending it to another service, or displaying it to users. Ideal for lead enrichment pipelines, CRM integrations, or any workflow that ingests user-supplied LinkedIn URLs and needs to distinguish profiles from company pages or job listings.

## Known failure modes

- Non-LinkedIn URL submitted — may return valid_format: false
- Malformed URL string — parser may fail to extract slug
- LinkedIn page may be private or removed — accessible: false even if format is valid
- Network timeout when checking accessibility — accessible may be unreliable
- Rate limiting or payment failure — returns x402 payment required error

## How this service works

Validate LinkedIn profile/company/job URL format and check accessibility. Returns URL type, slug, normalized URL. SQS: 96/100.

## Output

Returns a JSON object with: valid_format (boolean indicating if the URL matches LinkedIn URL patterns), accessible (boolean indicating if the URL is reachable), url_type (string indicating profile/company/job), and slug (the extracted identifier string from the URL).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "slug": {
  "type": "string"
 },
 "url_type": {
  "type": "string"
 },
 "accessible": {
  "type": "boolean"
 },
 "valid_format": {
  "type": "boolean"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-79aa4318/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)
