# Social Profiles Finder

> Social Profiles Finder is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Discovers a company's social media profile URLs (Twitter/X, LinkedIn, Facebook, Instagram, YouTube, GitHub, TikTok, Discord, Telegram) and contact email addresses from its homepage domain.

## Facts

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

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-564b118f
```

Example prompt: Can you find all the social media profiles and contact email addresses for the company at stripe.com — I need their Twitter, LinkedIn, GitHub, and anything else linked from their homepage.

## When to prefer this

Choose this endpoint when you need a quick, affordable ($0.01) single-call enrichment of a company's social media presence and contact info directly from their domain homepage, without requiring API keys from individual social platforms. It is ideal for lead enrichment pipelines, CRM population, competitive research, or onboarding workflows where you have a domain and need to rapidly discover where a company is active online. Prefer this over manual scraping or multi-platform social API calls when breadth across 9 platforms in one call is more valuable than deep per-platform analytics.

## Known failure modes

- Domain not found or unreachable — returns error if the homepage cannot be fetched
- No social links present on homepage — returns empty results if the site has no discoverable links
- Paywalled or JS-heavy sites — dynamically rendered pages may not expose links to the crawler
- Rate limiting or bot protection on target site — crawl may fail or return partial results
- Invalid domain input — malformed URLs cause request failure

## How this service works

Find a company's social media profiles from its website: Twitter/X, LinkedIn, Facebook, Instagram, YouTube, GitHub, TikTok, Discord and Telegram links discovered on the homepage, plus any contact email addresses found. Lead enrichment and company research from a domain. $0.01 per site.

## Output

Returns a structured set of discovered social media profile URLs across up to 9 platforms (Twitter/X, LinkedIn, Facebook, Instagram, YouTube, GitHub, TikTok, Discord, Telegram) found linked on the company's homepage, along with any public contact email addresses (e.g. info@, sales@, support@) present on the page. Fields are populated only where links are found; absent platforms are omitted or null.

## 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-564b118f/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)
