完全な企業インテリジェンス、
6つのAPIエンドポイント
名前をドメインに解決し、企業詳細・従業員数・ブログ&ソーシャルの更新・資金調達履歴・ロゴをすべて1つの API から取得。
ウェブサイトルックアップ
1 クレジット- 名前一致
- 国バイアス
- ヒント(曖昧さ解消)
企業詳細
2 クレジットウェブサイトルックアップ
企業詳細
従業員数
企業ロゴ
会社の更新情報
会社の資金調達
名前はあるけどドメインが不明?ここから始めましょう。
企業名を正規のウェブサイト URL に解決します。国でバイアスをかけたり、同名の企業を区別するヒントを渡すこともできます。
/api/v1/company/website
curl -G \ "/api/v1/company/website" \ --data-urlencode "company_name=Apex" \ --data-urlencode "country_code=us" \ --data-urlencode "hint=cybersecurity firm" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"website": "https://www.apexsecurity.com"
}
解決されたドメインを他のエンドポイント(詳細、従業員、更新情報、資金調達、ロゴ)に渡すだけで、名前だけから完全な情報を取得。
企業詳細
/api/v1/company/details
curl -G \ "/api/v1/company/details" \ --data-urlencode "website=https://stripe.com" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"name": "Stripe",
"tagline": "Financial infrastructure to grow your revenue",
"company_type": "PRIVATELY_HELD",
"founded_year": 2010,
"employee_count": 8000,
"industry": 40201020,
"specialties": [
"Payments processing",
"Billing and subscription management",
"Financial services platform",
"International payments"
],
"executives": [
{
"name": "Patrick Collison",
"title": "Co-founder and CEO"
}
],
"addresses": [
{
"city": "South San Francisco",
"state": "CA",
"country": "United States"
}
],
"twitter_url": "https://x.com/stripe",
"facebook_url": "https://facebook.com/StripeHQ",
"public_listing": null
}
Stripe
収益成長のための金融インフラ
実際に試す
企業とエンドポイントを選択して、Executeをクリック
従業員数の推移を追跡
専用の従業員数エンドポイントを使用して、リアルタイムのウェブ検索から最新の従業員数データを取得します。
/api/v1/company/employee-count
curl -G \ "/api/v1/company/employee-count" \ --data-urlencode "website=https://stripe.com" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"employee_count": 8000
}
リアルタイムのウェブ検索で最新の件数を返します。月次でポーリングして成長トレンドを構築しましょう。
Stripe · 従業員成長
あらゆる企業のロゴを無料で取得。
ドメインを渡すだけで、クリーンな128×128のPNGを即座に取得。CRMのサムネイル、ダッシュボード、エンリッチメントパイプラインに最適。クレジット消費ゼロ、クォータも不要。
/api/v1/company/logo
curl -G \ "/api/v1/company/logo" \ --data-urlencode "website=https://www.stripe.com" \ -H "Authorization: Bearer YOUR_API_KEY" \ --output logo.png
生の PNG バイナリを返します。次のコマンドでファイルにパイプするだけです: --output. クレジット不要 成功時に課金されます。ロゴが見つからない場合は 404 が返され、課金されません。
ブログとソーシャル活動を追跡
任意の企業のブログ投稿とX/Twitterの更新を1つのタイムラインに集約。
/api/v1/company/updates
curl -G \ "/api/v1/company/updates" \ --data-urlencode "website=https://stripe.com" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"blogs": ["https://stripe.com/blog/feed.rss"],
"x_profile": "https://x.com/stripe",
"updates": [
{
"url": "https://stripe.com/blog/annual-letter",
"title": "Stripe's annual letter",
"description": "A look back at what we built...",
"timestamp": "2025-03-01T12:00:00+00:00",
"source": "blog"
},
{
"url": "https://x.com/stripe/status/...",
"title": "We just launched a new feature",
"timestamp": "2025-02-28T18:30:00+00:00",
"source": "x"
}
]
}
ブログの RSS フィードと X プロフィールを自動的に発見し、日付順に並べた投稿を返します。
Stripe · 最近の更新
2024 年に構築したものと次に向かう方向の振り返り。
46か国の企業に対応できるよう決済プラットフォームをスケールした方法。
資金調達ラウンドと投資家
あらゆる企業の完全な資金調達履歴、ラウンドの詳細、投資家の内訳を取得する。
/api/v1/company/funding
curl -G \ "/api/v1/company/funding" \ --data-urlencode "website=https://stripe.com" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"total_funds_raised_usd": 9810000000,
"funding_rounds": [
{
"round_type": "SERIES_I",
"date": "2024-04-01",
"amount_usd": 694200000,
"investors": [
{
"name": "Sequoia Capital",
"website": "sequoiacap.com",
"type": "company"
}
]
}
]
}
投資家の詳細付きで資金調達ラウンドを返します。エンリッチメント用の投資家ウェブサイトも含まれます。
Stripe · 資金調達履歴
ユースケース
あらゆるドメインを実用的なビジネスインテリジェンスに変換
リードスコアリング
Stripe
92
Shopify
88
Figma
65
企業規模、資金調達ステージ、成長軌跡でリードをスコアリング。
従業員成長トレンド
Stripe
8,000
Shopify
10,000
Salesforce
73,000
従業員数エンドポイントを毎月ポーリングして、対象アカウント全体の長期的な従業員数トレンドを構築します。
CRM エンリッチメント
Stripe
エンリッチ済み
CRM レコードに企業情報、役員データ、ソーシャルリンクを自動入力。
データパイプラインをエンリッチする準備はできていますか?
無料ロゴエンドポイントで始めるか、または名前からドメインへのルックアップに1クレジット。完全な企業インテリジェンスには2クレジットから。カード不要。
今すぐ構築を開始