Greyhounds.WebApi

<back to all web services

GetOdds

The following routes are available for this service:
All Verbs/feed/odds
import Foundation
import ServiceStack

public class GetOdds : Codable
{
    required public init(){}
}

public class AvailableRounds : Codable
{
    public var id:String
    public var rounds:[Round]

    required public init(){}
}

public class Round : Codable
{
    public var id:String
    public var createdAt:Date
    public var updatedAt:Date
    public var status:RoundStatus
    public var configuration:RoundConfiguration
    public var odds:[Int:Outcome]
    public var jackpotInfo:JackpotInfo
    public var sequence:String
    public var progress:RoundProgress
    public var isLocked:Bool
    public var isCalculated:Bool

    required public init(){}
}

public enum RoundStatus : Int, Codable
{
    case Pending = 0
    case InProgress = 1
    case Ended = 2
}

public class RoundConfiguration : Codable
{
    public var countdownDurationInSeconds:Int
    public var raceDurationInSeconds:Int
    public var resultsDurationInSeconds:Int
    public var rtpStrategy:RTPStrategies

    required public init(){}
}

public enum RTPStrategies : Int, Codable
{
    case RNG = 0
    case Default = 1
}

public class Outcome : Codable
{
    public var id:Int
    public var odds:Float
    public var status:OutcomeStatus

    required public init(){}
}

public enum OutcomeStatus : Int, Codable
{
    case Unknown = 0
    case Lost = 1
    case Won = 2
    case Void = 3
}

public class JackpotInfo : Codable
{
    public var isGiven:Bool
    public var id:String
    public var slipId:String
    public var jpId:String
    public var amount:Double
    public var locationId:String
    public var locationName:String
    public var addressLine:String
    public var amountAccumulated:Double

    required public init(){}
}

public class RoundProgress : Codable
{
    public var stage:Stages
    public var step:Int
    public var steps:Int
    public var utcTimestamp:Date

    required public init(){}
}

public enum Stages : Int, Codable
{
    case None = 0
    case Countdown = 1
    case Processing = 2
    case Race = 3
    case Results = 4
}


Swift GetOdds DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + OTHER

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /feed/odds HTTP/1.1 
Host: grh1.api.bettor.webhop.biz 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"id":"String","rounds":[{"id":"String","odds":[{"id":0,"val":0}]}]}