Roboinsights Logo

RobotEvents API

Documentation for the RobotEvents API integration

RobotEvents API

This page provides information about how Roboinsights integrates with the RobotEvents API.

Overview

The RobotEvents API provides access to competition data, event listings, team information, and match results from official robotics competitions.

Authentication

To use the RobotEvents API, you'll need:

  • An API key from RobotEvents
  • Proper authentication headers in your requests
// Example request with authentication
const response = await fetch('https://api.robotevents.com/v2/events', {
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Accept': 'application/json'
  }
});

Available Endpoints

The RobotEvents API provides several endpoints that Roboinsights leverages:

Events

GET /v2/events

Retrieve information about past, ongoing, and upcoming events.

Teams

GET /v2/teams

Access team information, including registration status and competition history.

Matches

GET /v2/events/{event_id}/matches

Get match results and schedules for specific events.

Rate Limiting

Be aware of the rate limiting rules when using the RobotEvents API to ensure your application maintains access.

On this page