API Reference
GET /v1/company/:handle/resources

GET /v1/company/:handle/resources

Discovered links and resources for a company. Aggregates website, GitHub, documentation, community links, and bio links.

Cost: $0.10 per call

curl "https://frontrun.vc/v1/company/stealth_ai_co/resources" \
  -H "X-API-Key: your_api_key"

Parameters

ParameterTypeDefaultDescription
handlestring (path)--X username of the company. Required.

Response

{
  "handle": "stealth_ai_co",
  "resources": {
    "website": "https://stealthai.com",
    "twitter": "https://x.com/stealth_ai_co",
    "github": "https://github.com/stealthai",
    "documentation": "https://docs.stealthai.com",
    "discord": "https://discord.gg/stealthai",
    "telegram": null,
    "bio_links": [
      "https://stealthai.com/careers",
      "https://stealthai.com/blog"
    ],
    "all_links": [
      "https://stealthai.com",
      "https://github.com/stealthai",
      "https://docs.stealthai.com",
      "https://discord.gg/stealthai",
      "https://stealthai.com/careers",
      "https://stealthai.com/blog"
    ]
  },
  "cost_cents": 5,
  "balance_cents": 4900
}
FieldTypeDescription
bio_linksarrayLinks extracted from the account's X bio.
all_linksarrayDeduplicated list of all discovered links across sources.

Fields return null when no link is found for that platform.