회사 조회 API 레퍼런스
도메인과 관련된 회사 정보를 조회합니다. 이 레퍼런스를 사용해 작업을 선택하고 문서화된 응답 계약을 통합하세요.
작업
GET /v1/company
GET
/v1/company
쿼리 매개변수
| 매개변수 | 유형 | 필수 |
|---|---|---|
| domain | string | 필수 |
응답 필드
| 필드 | 유형 |
|---|---|
domain |
string |
company |
object |
company.name |
string | null |
company.legal_name |
string | null |
company.description |
string | null |
company.founded_year |
integer | null |
company.industry |
string | null |
company.employee_count_range |
string | null |
company.type |
string | null |
location |
object |
social |
object |
social.linkedin |
string | null |
social.twitter |
string | null |
social.facebook |
string | null |
social.github |
string | null |
tech |
object |
tech.email_provider |
string | null |
tech.website_technologies[] |
string[] |
confidence |
number |
evidence_summary |
object |
evidence_summary.sources[] |
string[] |
evidence_summary.source_count |
integer |
evidence_summary.confidence |
number |
evidence_summary.confidence_label |
string |
evidence_summary.company_field_count |
integer |
evidence_summary.social_profile_count |
integer |
evidence_summary.email_provider_detected |
boolean |
evidence_summary.website_technology_count |
integer |
evidence_summary.cache_status |
string |
meta |
object |
예제 요청
curl -H "X-API-Key: $DOMSCAN_API_KEY" "https://domscan.net/v1/company?domain=example.com"
예제 응답
{
"domain": "example.com",
"company": {
"name": "string",
"legal_name": "string",
"description": "198.51.100.10",
"founded_year": 1,
"industry": "string",
"employee_count_range": "string",
"type": "string"
},
"location": {},
"social": {
"linkedin": "string",
"twitter": "string",
"facebook": "string",
"github": "string"
},
"tech": {
"email_provider": "[email protected]",
"website_technologies": [
"string"
]
},
"confidence": 1,
"evidence_summary": {
"sources": [
"string"
],
"source_count": 1,
"confidence": 1,
"confidence_label": "high",
"company_field_count": 1,
"social_profile_count": 1,
"email_provider_detected": "[email protected]",
"website_technology_count": 1,
"cache_status": "hit"
},
"meta": {}
}