예제 요청
curl -H "X-API-Key: $DOMSCAN_API_KEY" "https://domscan.net/v1/social/info"
예제 응답
{
"endpoint": "/v1/social",
"description": "Check if a username is available on supported social platforms.",
"parameters": {
"handle": {
"type": "string",
"required": true,
"description": "Username to check"
},
"platforms": {
"type": "string",
"required": false,
"description": "Comma-separated platform list",
"example": "github,gitlab,reddit"
}
},
"platforms": {
"supported": [
"github",
"gitlab",
"bitbucket",
"devto",
"huggingface",
"dribbble",
"soundcloud",
"gumroad",
"buymeacoffee",
"substack",
"itchio",
"hackernews",
"reddit",
"bluesky",
"twitter",
"instagram",
"facebook",
"threads",
"pinterest",
"snapchat",
"telegram",
"twitch",
"patreon",
"tiktok",
"youtube",
"linkedin"
],
"coming_soon": [
"behance",
"dockerhub",
"hashnode",
"rubygems",
"discord"
],
"experimental": [
"behance",
"dockerhub",
"hashnode",
"rubygems"
],
"planned": [],
"blocked": [
"discord"
],
"details": [
{
"id": "github",
"display_name": "GitHub",
"aliases": [
"github"
],
"category": "developer",
"tier": 0,
"status": "live",
"method": "official_api",
"confidence": "high",
"logo_key": "github",
"profile_url_template": "https://github.com/{handle}",
"docs_anchor": "github",
"caveat_codes": [],
"cache_ttl_s": {
"available": 300,
"taken": 3600,
"unknown": 60,
"rate_limited": 60
},
"handle_rules": {
"min_length": 1,
"max_length": 39,
"description": "1-39 chars, alphanumeric and hyphens, cannot start/end with hyphen"
}
}
]
},
"example_request": "/v1/social?handle=myusername&platforms=github,gitlab,reddit",
"example_response": {
"handle": "myusername",
"checked_at": "2025-01-05T12:00:00Z",
"availability": {
"github": {
"available": true,
"profile_url": null,
"checked": true,
"requested": true
},
"reddit": {
"available": false,
"profile_url": "https://reddit.com/user/myusername",
"checked": true,
"requested": true
},
"gitlab": {
"available": true,
"profile_url": null,
"checked": true,
"requested": true
}
},
"summary": {
"available_count": 2,
"unavailable_count": 1,
"unknown_count": 0
},
"summary_v2": {
"requested_count": 3,
"checked_count": 3,
"available_count": 2,
"unavailable_count": 1,
"unknown_count": 0,
"not_supported_count": 0,
"determinacy_rate": 1
}
}
}
소셜 핸들 가용성
주요 소셜 미디어 플랫폼에서 사용자명의 가용성을 확인합니다.
쿼리 매개변수
예제 응답
응답 필드
handlechecked_atavailabilitysummarysummary.available_countsummary.unavailable_countsummary.unknown_countsummary_v2summary_v2.requested_countsummary_v2.checked_countsummary_v2.available_countsummary_v2.unavailable_countsummary_v2.unknown_countsummary_v2.not_supported_countsummary_v2.determinacy_ratebeta_noticemetameta.supported_platforms[]meta.unsupported_platforms[]meta.latency_ms응답 필드
endpointdescriptionparametersplatformsplatforms.supported[]platforms.coming_soon[]platforms.experimental[]platforms.planned[]platforms.blocked[]platforms.details[]platforms.details[]platforms.details[].idplatforms.details[].display_nameplatforms.details[].aliases[]platforms.details[].categoryplatforms.details[].tierplatforms.details[].statusplatforms.details[].methodplatforms.details[].confidenceplatforms.details[].logo_keyplatforms.details[].profile_url_templateplatforms.details[].docs_anchorplatforms.details[].caveat_codes[]platforms.details[].cache_ttl_splatforms.details[].cache_ttl_s.availableplatforms.details[].cache_ttl_s.takenplatforms.details[].cache_ttl_s.unknownplatforms.details[].cache_ttl_s.rate_limitedplatforms.details[].handle_rulesplatforms.details[].handle_rules.min_lengthplatforms.details[].handle_rules.max_lengthplatforms.details[].handle_rules.descriptionexample_requestexample_response예제 요청
예제 응답