# social-profiles-finder-bulk

> social-profiles-finder-bulk is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Finds social media profile links for up to 20 company domains in a single concurrent batch call, returning results in input order with per-item errors.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/social-links
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/social-profiles-finder-bulk-a8f059f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8qLb6H4-RsxUC2ulMW7Pj

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 social-profiles-finder-bulk-a8f059f5
```

Example prompt: I have a list of 15 company websites — acme.com, globex.com, initech.com, and 12 others — can you find all their social media profiles (LinkedIn, Twitter, Instagram, Facebook) in one shot?

## When to prefer this

Choose this endpoint when you have a list of 2–20 company domains and need social profiles for all of them efficiently. It processes items concurrently and returns results in input order, making it far more efficient than calling the single /social-links endpoint in a loop. Prefer it for CRM enrichment pipelines, lead list processing, or portfolio monitoring workflows where multiple domains need to be resolved in a single API call.

## Known failure modes

- Domain not found or unreachable — per-item error field populated
- More than 20 domains submitted — request rejected or truncated
- No social links detectable on the domain's homepage — empty result with no error
- Payment not provided or insufficient — HTTP 402 returned
- Malformed domain input — per-item error field indicates invalid input
- Network timeout on concurrent sub-requests — partial results with failure count incremented

## How this service works

Bulk social profiles finder: up to 20 domains in one call, processed concurrently, results returned in input order with a per-item error field and a count of failures. Same answer per item as the single /social-links endpoint (Find a company's social media profiles from its website). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results matching the input domain list, where each item contains the discovered social media profile URLs (LinkedIn, Twitter/X, Facebook, Instagram, etc.) for that domain, plus a per-item error field if lookup failed. A top-level count of failures is also included.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/social-profiles-finder-bulk-a8f059f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
