LogoLogo
FeedsIntelligenceEngagementsHelpHome
TRADE360 Integration
TRADE360 Integration
  • Integration Guide
  • RMQ connection
    • Connection and Consumption setup
    • Message Deserializing
    • Market/Bet Message Handling
    • How do I work with TRADE360 feed?
  • Message Structure
    • Message Types Overview
    • Message
    • Events
    • Fixture
    • Competition
    • Markets
    • Bets
    • Participant
    • Livescore
    • Settlements
    • Heartbeat
    • Keep Alive
    • Extra Data
    • Outright Fixture
    • Outright Fixture Market
    • Outright League Fixture
    • Outright League Market
    • Outright Settlements
    • Outright League Settlement
    • Example Messages
    • ProviderMarkets
  • APIs
    • Metadata
    • Subscription
    • Distribution
    • Snapshot
    • Notes and Troubleshooting
  • Enumerations
    • Fixture/Scoreboard Status
    • Subscription
    • Message Types
    • Bet Suspension Reasons
    • Fixture Extra Data
    • Status Description
    • Statistics and Incidents
    • Periods
    • Bet Settlements and Statuses
    • Livescore Extra Data
    • Languages
  • SDK
    • SDK Overview
    • Configuration
    • SDK Installation Guide NodeJS
    • SDK Installation Guide .NET
    • SDK Installation Guide Java
  • Code Samples
    • RMQ Consumer (PHP)
    • RMQ Consumer (GO)
    • RMQ Consumer (Node.js)
    • RMQ Consumer (Python)
    • RMQ Consumer (JavaScript)
    • RMQ Consumer (C#)
Powered by GitBook
On this page

Was this helpful?

  1. Message Structure

Competition

PreviousFixtureNextMarkets

Last updated 1 year ago

Was this helpful?

Competition element holds Fixture, Markets, Livescore, OutrightFixture, OutrightLeague, OutrightScore elements. It is structured as follows:

<Competition Id="3310" Name="Wolverhampton" Type="1">
  <Events>
    <Event FixtureId="4992683">
       ...
    </Event>
  </Events>
  <Competitions Id="1" Name="All" Type="4">
    <Events>
      <Event FixtureId="4992683">
         ...
      </Event>
    </Events>
  </Competitions>
</Competition>
{
  "Competition": {
    "Id": 3310,
    "Name": "Wolverhampton",
    "Type": 1,
    "Events": [
      {
        "FixtureId": 4992683
      }
    ],
    "Competitions": [
      {
        "Id": 1,
        "Name": "All",
        "Type": 4,
        "Events": [
          {
            "FixtureId": 4992683
          }
        ]
      }
    ]
  }
}

Model

Element

Data Type

Description

Competition.Id

int

The Id of the current competition

Competition.Name

string

The Name of the current competition

Competition.Type

int

The Type of the competition

Competition.Events

List of Events