Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NameTypeDescription
tokenxsd:stringREQUIRED. More information concerning authorization in API introduction section
pagexsd:intDetermines offset of paginated data. Default value is 1 which means first page
limitxsd:int

Determines maximum number of returned records on page. Used in paginated data. Default value is 500

Possible values: 5, 10, 25, 50, 100, 250, 500

market_type_idxsd:intDetermines the market type identifier
scope_idxsd:intDetermines the scope of the market 
subtypexsd:string

Determines the subtype of the market. Possible values:

  • 2-way
  • 3-way
  • n-way
sport_idxsd:intDetermines the sport identifier for the market 
is_default

is_livexsd:string
is_prematchxsd:string
timestampxsd:unix_timestampSelection date, format UNIX_TIMESTAMP. Only changes that occurred or were updated after this timestamp will be returned

...

.markets
..market
idUnique identifier of the market
sport_idIdentifier for the sport
nameMarket name's pattern including replacers. It's used to generate final market name for specific event
static_nameStatic name of the market
market_type_idIdentifier type for the market e.g. Totals, Asian, Corners 
scope_idUnique identifier for the scope 
has_replacer

Possible values:

  • yes - the market and their default outcomes of the market contains replacer
  • no - the market and their default outcomes of the market not contains replacer
is_live

Possible values:

  • yes - the market could be offer in live betting
  • no - the market couldn't be offer in live betting
is_prematch

Possible values:

  • yes - the market could be offer in prematch betting
  • no - the market couldn't be offer in prematch betting
is_default_market

Possible values:

  • yes
  • no
subtype

Possible values:

  • 2-way:  the market includes 2 possible outcomes
  • 3-way: the market includes 3 possible outcomes
  • n-way: the market includes 1 or at least 4 possible outcomes
is_default
display_orderThe parameter used to sort markets
descriptionDescription of the market
status

Possible values:

  • active
  • inactive
utInformation about the date and time of when the record was last updated. Format UNIX_TIMESTAMP
...default_outcomes
....default_outcome
idIdentifier of the default outcome
nameName of the outcome e.g. Home, Understatic name
Patter of the outcome name e.g. Under #param#is_single_outcome
required_participant

Internal attribute. Possible values:

  • yes
  • no
display_orderThe parameter used to sort outcomes in the market
...replacers
....replacer
id
name
format
description

Samples XML/JSON

Code Block
languagexml
<markets>
	<market id="1" sport_id="5" name="3way" static_name="3way" market_type_id="1" scope_id="2" has_replacer="yes" is_live="yes" is_prematch="yes" subtype="3-way" is_default="yes" display_order="1" description="Match result in regular time" status="active" ut="12356712">
		<default_outcomes>
			<default_outcome id=1 name="#participant1#" is_single_outcome="yes" required_participant="yes" display_order="1"/>
			<default_outcome id=2 name="Draw" is_single_outcome="yes" required_participant="no" display_order="2">
			<default_outcome id=3 name="#participant2#" is_single_outcome="yes" required_participant="yes" display_order="3">
		</default_outcomes>
		<replacers>
			<replacer id="7" name="#participant1#" format="text" description="Name of the first participant connected to specific object" />
			<replacer id="8" name="#participant2#" format="text" description="Name of the second participant connected to specific object" />
 		</replacers>
 	</market>
</markets>

FAQ


QuestionAnswer
1

2

3