Skip to content
Eden Engine

YC Company Profile Lookup (by Slug)

omnial/get-company

Given a Y Combinator company's slug (e.g. 'airbnb'), returns its public profile: name, batch, one-line and long description, tags, location, team size, current YC directory status, and its founders' names, titles, and bios. Returns an empty result when the slug matches no known company.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
Provider price
$0.01365 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "slug"
  ],
  "properties": {
    "slug": {
      "type": "string",
      "description": "Company slug identifier (e.g. 'airbnb', 'coinbase', 'stripe'). Obtainable from search_companies results."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "id": {
          "type": "integer",
          "description": "YC's internal numeric company id."
        },
        "city": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "slug": {
          "type": "string"
        },
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "batch": {
          "type": "string",
          "description": "e.g. 'W09'."
        },
        "cb_url": {
          "type": "null",
          "description": "Company Crunchbase page. Redacted to null."
        },
        "fb_url": {
          "type": "null",
          "description": "Company Facebook page. Redacted to null."
        },
        "country": {
          "type": "string",
          "description": "Two-letter country code, e.g. 'US'."
        },
        "website": {
          "type": "null",
          "description": "The company's own website. Parses as a URL and is redacted to null here."
        },
        "city_tag": {
          "type": "string"
        },
        "founders": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string",
                "description": "e.g. 'Founder/CEO'."
              },
              "user_id": {
                "type": "integer",
                "description": "YC's internal numeric founder id."
              },
              "full_name": {
                "type": "string"
              },
              "has_email": {
                "type": "boolean",
                "description": "Whether YC has an email on file for this founder -- no email address is returned."
              },
              "is_active": {
                "type": "boolean"
              },
              "founder_bio": {
                "type": "string"
              },
              "twitter_url": {
                "type": "null",
                "description": "Founder X/Twitter profile. Redacted to null."
              },
              "linkedin_url": {
                "type": "null",
                "description": "Founder LinkedIn profile. Redacted to null."
              },
              "avatar_thumb_url": {
                "type": "null",
                "description": "Founder avatar image. Redacted to null."
              },
              "latest_yc_company": {
                "type": "object",
                "properties": {
                  "href": {
                    "type": "null",
                    "description": "Link to that company's YC page. Redacted to null."
                  },
                  "name": {
                    "type": "string"
                  }
                },
                "additionalProperties": true
              }
            },
            "additionalProperties": true
          },
          "description": "One entry per listed founder."
        },
        "location": {
          "type": "string"
        },
        "logo_url": {
          "type": "null",
          "description": "Company logo image. Redacted to null."
        },
        "ycdc_url": {
          "type": "null",
          "description": "Link to the company's YC directory page. Redacted to null."
        },
        "one_liner": {
          "type": "string"
        },
        "team_size": {
          "type": "integer"
        },
        "batch_name": {
          "type": "string",
          "description": "e.g. 'Winter 2009'."
        },
        "github_url": {
          "type": "null",
          "description": "Observed null on the one real call; would be a URL when populated and is redacted to null on that basis (see this file's header)."
        },
        "twitter_url": {
          "type": "null",
          "description": "Company X/Twitter page. Redacted to null."
        },
        "ycdc_status": {
          "type": "string",
          "description": "e.g. 'Public' -- the company's current status in YC's general directory (Public/Active/Inactive/Dead), not a funding-specific status."
        },
        "linkedin_url": {
          "type": "null",
          "description": "Company LinkedIn page. Redacted to null."
        },
        "year_founded": {
          "type": "integer"
        },
        "app_video_url": {
          "type": "null",
          "description": "Observed null on the one real call; would be a URL when populated and is redacted to null on that basis (see this file's header)."
        },
        "company_photos": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "integer"
              },
              "url": {
                "type": "null",
                "description": "Photo image URL. Redacted to null."
              },
              "photo_type": {
                "type": "string",
                "description": "e.g. 'sign'."
              }
            },
            "additionalProperties": true
          }
        },
        "dday_video_url": {
          "type": "null",
          "description": "Observed null on the one real call; would be a URL when populated and is redacted to null on that basis (see this file's header)."
        },
        "small_logo_url": {
          "type": "null",
          "description": "Small company logo image. Redacted to null."
        },
        "long_description": {
          "type": "string"
        },
        "primary_group_partner": {
          "type": "object",
          "properties": {
            "id": {
              "type": "integer"
            },
            "url": {
              "type": "null",
              "description": "Link to the partner's YC profile page. Redacted to null."
            },
            "full_name": {
              "type": "string",
              "description": "The YC partner's public staff name."
            },
            "avatar_thumb_url": {
              "type": "null",
              "description": "Partner avatar image. Redacted to null."
            }
          },
          "description": "The YC staff partner assigned as this company's primary group partner.",
          "additionalProperties": true
        }
      },
      "description": "Absent (whole object omitted) on a no-match slug.",
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on the one real found-case call observed."
    }
  },
  "description": "The company record at the endpoint's result path. Empty (`{}`) when the slug matches no known Y Combinator company -- see examples/nonexistent-slug.json.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.01365
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026