Skip to main content

TempsReel API

Welcome to the TempsReel API documentation.

Overview

The TempsReel API provides real-time access to Tick&Live's event management platform. It offers a modern REST interface for:

  • Catalog Management - Browse events, venues, and rates
  • Order Processing - Book and confirm orders programmatically
  • Real-time Data - Get up-to-date information on availability and pricing

Base URLs

  • Pre-production: http://tempsreel-pre.connect.tickandlive.com

Authentication

All API requests require the x-tenant header containing your tenant ID:

curl -H "x-tenant: your-tenant-id" \
http://tempsreel-pre.connect.tickandlive.com/api/v1/catalog/events

See the Authentication Guide for details.

Rate Limits

The API enforces rate limits to ensure fair usage:

  • Catalog endpoints: 100 requests/minute
  • Order endpoints: 20 requests/minute
  • Overall: 1000 requests/hour

See Rate Limits for details and best practices.

Response Format

All responses are JSON. Successful responses return data in the following format:

{
"events": [...],
"pagination": {...}
}

Errors follow the RFC 7807 Problem Details format:

{
"type": "https://tools.ietf.org/html/rfc7231#section-6.5.1",
"title": "Bad Request",
"status": 400,
"detail": "Error description"
}

API Versioning

The current API version is v1. Version information is included in response headers:

API-Version: 1.0

Interactive Documentation

Use the API Reference (generated automatically from OpenAPI) to explore endpoints interactively. You can:

  • View request/response schemas
  • Try endpoints directly from your browser
  • See code examples in multiple languages

Note: The API Reference will be automatically generated once the OpenAPI specification is synchronized.

Getting Started

New to the API? Start here:

  1. TempsReel Quick Start Guide - Get up and running in 5 minutes
  2. Authentication - Learn about authentication
  3. Complete Authentication Guide - Detailed authentication documentation

Migration from SOAP

Migrating from the SOAP API? Check out our SOAP Migration Guide.

Support

Need help?

Next Steps

  • Explore the API Reference (auto-generated from OpenAPI)
  • Review Best Practices
  • Check the Changelog for latest updates