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
| Parameter | Type | Default | Description |
|---|---|---|---|
handle | string (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
}| Field | Type | Description |
|---|---|---|
bio_links | array | Links extracted from the account's X bio. |
all_links | array | Deduplicated list of all discovered links across sources. |
Fields return null when no link is found for that platform.