First Step
Getting started with Roanuz Cricket GraphQL is same as every other GraphQL APIs. All you need is a Project Key. We also provide GraphQL Playground.
Step 1: Create a new project
Project Key, API Key and GraphQL URL are available on Project Console.
Step 2: GraphQL URL
Follow the below structure to form your project’s GraphQL URL. Fully constructed GraphQL URL is also available on Project Console.
Step 3: Create Token
An access token is required to fetch data from the other GraphQL queries and mutations. An API Key is required to create a new access token. Get API Key from Project Console. Learn more about authentication here.
mutation {
auth (api_key: "APIKEY") {
token
expires
}
}
mutation {
auth (api_key: "APIKEY") {
token
expires
}
}
Step 4: Perform GraphQL Query
Once you have authenticated successfully, you can start accessing data using various queries such as the Featured Matches Query. The Featured Matches Query provides a manually curated list of matches that are expected to create huge demand. Pass the access token on header key “rs-token”.
featured_matches {
matches {
name
shortName
playStatus
subTitle
teams {
a {
name
}
b {
name
}
}
startAt
venue {
name
city
}
format
metricGroup
}
}
featured_matches {
matches {
name
shortName
playStatus
subTitle
teams {
a {
name
}
b {
name
}
}
startAt
venue {
name
city
}
format
metricGroup
}
}
HTTP Headers
{"rs-token": "TOKEN"}
Step 5: Start Exploring
Use our documentation or GraphQL Playground to explore all queries and mutations. Our developers also uses Altair GraphQL Client.