# Techforce Agents LinkedIn Talent

> Techforce Agents LinkedIn Talent is a paid API for AI agents from techforce-agents.onrender.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Searches LinkedIn for candidate profiles matching a job role, optional location, and seniority level, returning names, headlines, profile URLs, and bio snippets.

## Facts

- Endpoint: GET https://techforce-agents.onrender.com/api/linkedin-candidates
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/techforce-agents-linkedin-talent-882267f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IDK7TSd7_JzUbdB8_s3ot

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 techforce-agents-linkedin-talent-882267f7
```

Example prompt: Can you find me 15 Senior React developers in Austin on LinkedIn? I need their names, profile links, and a short bio for each.

## When to prefer this

Use this endpoint when an AI hiring agent or recruiter needs on-demand LinkedIn candidate data for a specific role without manual searching. Prefer it over general web search when you need structured candidate profiles (name, title, URL, bio) in a single call. It is especially useful for quickly populating a talent pipeline with up to 50 filtered candidates at low cost per query.

## Known failure modes

- Missing required 'role' parameter returns an error
- Requesting more than 50 candidates exceeds the max limit and may return an error or be capped
- Rare roles or niche locations may return fewer candidates than requested
- Payment failure (x402) blocks the request if USDC balance is insufficient
- LinkedIn data availability may limit results for highly specific queries

## How this service works

LinkedIn candidate search on demand — full name, job title/headline, profile URL, and bio snippet. Priced $0.05 per candidate (minimum 1, up to 50 per search). Enter a job role, optional location and seniority, and the number of candidates. Fast talent sourcing for recruiters and AI hiring agents.

Powered by Techforce Global — explore more at https://techforceglobal.com

## Output

Returns an array of up to 50 LinkedIn candidate objects, each containing the candidate's full name, job title or LinkedIn headline, a short bio snippet, and a direct LinkedIn profile URL. Results are scoped to the requested role, location, and seniority.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "role"
     ],
     "properties": {
      "max": {
       "type": "integer",
       "description": "Number of candidates to return (min 1, max 50)"
      },
      "role": {
       "type": "string",
       "description": "Job role / title to search, e.g. 'Java Developer'"
      },
      "location": {
       "type": "string",
       "description": "City or region (optional, default New York)"
      },
      "seniority": {
       "enum": [
        "Junior",
        "Mid",
        "Senior",
        "Lead",
        "Principal",
        "Staff",
        "Director"
       ],
       "type": "string",
       "description": "Seniority (optional)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "items": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "name": {
          "type": "string",
          "description": "Candidate full name"
         },
         "title": {
          "type": "string",
          "description": "Job title / LinkedIn headline"
         },
         "snippet": {
          "type": "string",
          "description": "Short bio / description"
         },
         "profile_url": {
          "type": "string",
          "description": "LinkedIn profile URL"
         }
        }
       },
       "description": "Array of LinkedIn candidates"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/techforce-agents-linkedin-talent-882267f7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from techforce-agents.onrender.com](https://www.zero.xyz/host/techforce-agents.onrender.com/llms.txt)
