SingBet에 공개 API가 있습니까?
SingBet은 배당률 데이터용 공개 API를 제공하지 않습니다. Odds-API.io는 자체 데이터 수집 인프라를 통해 SingBet 배당률을 포괄적으로 제공합니다.
SingBet 데이터로 얻을 수 있는 것
Odds-API.io를 통한 포괄적인 베팅 데이터 커버리지
✓ 주요 기능
- 경쟁력 있는 배당률
- 실시간 베팅
- 아시아 마켓
- 빠른 정산
- 다양한 스포츠
📈 마켓 유형
- 승패(머니라인)
- 핸디캡(스프레드)
- 토탈(오버/언더)
- 아시안 핸디캡
- 전반전
- 쿼터
⚽ 지원 스포츠
- 축구
- 농구
- 테니스
- 배드민턴
- 탁구
- 배구
- e스포츠
SingBet 배당률 요금
신용카드 없이 시간당 100회(일 500회) 요청으로 무료로 시작할 수 있습니다.
SingBet 배당률은 모든 플랜에 포함되며, 34개 스포츠에 걸친 265개 이상의 북메이커와 함께 제공됩니다.
빠른 시작: SingBet 배당률 가져오기
간단한 REST API로 몇 분 안에 SingBet 배당률을 가져올 수 있습니다
# First, get all available sports (no auth required)
curl "https://api.odds-api.io/v3/sports"
# Response:
# [{"name":"Football","slug":"football"},{"name":"Basketball","slug":"basketball"},...]# Get events available on SingBet
curl "https://api.odds-api.io/v3/events?apiKey=YOUR_KEY&sport=football&bookmaker=SingBet"
# Response includes event IDs you'll use to fetch odds:
# [{"id":65068198,"home":"Manchester City","away":"Brentford FC",
# "date":"2025-12-17T19:30:00Z","sport":{"name":"Football","slug":"football"},
# "league":{"name":"England - EFL Cup","slug":"england-efl-cup"},"status":"pending"},...]import requests
API_KEY = "your_api_key"
EVENT_ID = 65068198 # from step 2
# Get odds for a specific event
response = requests.get(
"https://api.odds-api.io/v3/odds",
params={
"apiKey": API_KEY,
"eventId": EVENT_ID,
"bookmakers": "SingBet"
}
)
odds_data = response.json()
# Or use /odds/multi for multiple events at once
response = requests.get(
"https://api.odds-api.io/v3/odds/multi",
params={
"apiKey": API_KEY,
"eventIds": "65068198,65068199,65068200",
"bookmakers": "SingBet"
}
){
"id": 65068198,
"home": "Manchester City",
"away": "Brentford FC",
"date": "2025-12-17T19:30:00Z",
"sport": {"name": "Football", "slug": "football"},
"league": {"name": "England - EFL Cup", "slug": "england-efl-cup"},
"bookmakers": {
"SingBet": [
{
"name": "ML",
"updatedAt": "2025-12-17T11:00:28Z",
"odds": [{"home": "1.500", "draw": "4.750", "away": "5.750"}]
},
{
"name": "Spread",
"updatedAt": "2025-12-17T11:00:28Z",
"odds": [{"hdp": -1.25, "home": "2.050", "away": "1.800"}]
},
{
"name": "Totals",
"updatedAt": "2025-12-17T11:00:28Z",
"odds": [{"hdp": 3, "over": "1.975", "under": "1.875"}]
}
]
}
}웹소켓으로 받는 실시간 SingBet 배당률
실시간 베팅 애플리케이션에는 즉시 업데이트를 받을 수 있는 웹소켓 피드 사용을 권장합니다
왜 웹소켓입니까?
REST API를 반복 호출하는 대신, 지속 연결되는 웹소켓을 통해 SingBet 배당률 업데이트를 즉시 받을 수 있습니다.
// Connect to WebSocket for real-time SingBet odds
const ws = new WebSocket("wss://api.odds-api.io/v3/ws?apiKey=YOUR_KEY");
ws.onmessage = (event) => {
const data = JSON.parse(event.data);
if (data.type === "updated" && data.bookie === "SingBet") {
console.log(`Match ${data.id} updated:`, data.markets);
}
};구독 시 웹소켓을 활성화하거나 hello@odds-api.io로 문의해 주십시오
웹소켓 문서 보기 →SingBet API 자주 묻는 질문
SingBet 배당률 이용에 대한 자주 묻는 질문입니다
SingBet에 공개 API가 있습니까?
아니요, SingBet은 배당률에 접근할 수 있는 공개 API를 제공하지 않습니다. 하지만 Odds-API.io는 자체 서비스를 통해 SingBet 배당률 데이터를 포괄적으로 제공하므로, 개발자가 SingBet 라인에 프로그래밍 방식으로 접근할 수 있습니다.
API로 SingBet 배당률을 어떻게 가져옵니까?
Odds-API.io에 가입한 뒤 API 요청 시 bookmakers 파라미터에 "SingBet"을 포함하면 됩니다. 지원되는 모든 스포츠와 마켓에 대해 실시간 SingBet 배당률을 JSON 형식으로 받을 수 있습니다.
SingBet API는 어떤 스포츠를 지원합니까?
SingBet 커버리지에는 축구, 농구, 테니스, 배드민턴, 탁구, 배구, e스포츠가 포함되며, 머니라인, 핸디캡, 토탈, 아시안 핸디캡 마켓을 제공합니다.
개발자들이 SingBet를 선택하는 이유
다른 북메이커 API 살펴보기
Odds-API.io를 통해 전 세계 265개 이상의 북메이커 배당률에 접근할 수 있습니다