Getting Started
Welcome to the Tick&Live Developer Portal! This guide will help you get started with integrating our REST APIs into your application.
What are Tick&Live APIs?
Tick&Live provides a suite of modern REST APIs that offer programmatic access to our event management platform. Our APIs replace legacy SOAP services and offer:
- Modern REST architecture - JSON-based, easy to integrate
- Real-time data access - Get up-to-date information instantly
- Comprehensive documentation - Interactive API reference with examples
- Multiple APIs - Access different aspects of our platform
Available APIs
TempsReel API
Real-time access to event catalog, cart management, and order processing.
- Use cases: Browse events, manage shopping carts, process orders
- Documentation: TempsReel API Reference
- Quick Start: TempsReel Quick Start
Prerequisites
Before you begin, make sure you have:
- An API key (tenant ID) - Contact xxxxxxxxxxxx@tickandlive.com to obtain your tenant ID
- An HTTP client - Use curl, Postman, or your preferred HTTP library
- HTTPS - Required for all API calls in production
Obtaining Access
To get started with Tick&Live APIs:
-
Contact xxxxxxxxxxxx@tickandlive.com with:
- Your organization name
- Intended use case
- Which API(s) you need access to
- Target environment (pre-production)
-
You will receive:
- Your tenant ID (to use in the
x-tenantheader) - The API base URL(s)
- Access to this Developer Portal
- Your tenant ID (to use in the
Next Steps
- Choose Your API - Select the API that fits your needs
- Authentication - Learn how to authenticate your requests
- API-Specific Quick Starts - Get up and running with your chosen API
Base URLs
- Pre-production:
http://tempsreel-pre.connect.tickandlive.com
Important Notes
Code Examples in API Reference
Note: The code examples (cURL, C#, Python, JavaScript) displayed in the API Reference pages use the Developer Portal website URL instead of the API base URL.
Why: This is a limitation of the docusaurus-plugin-openapi-docs plugin, which uses the documentation site URL to generate code examples, even though the API server URL is correctly configured in the OpenAPI specification.
What to do: When copying code examples from the API Reference, replace the URL with the actual API base URL:
- Use
http://tempsreel-pre.connect.tickandlive.cominstead of the URL shown in the example
Example:
// ❌ Don't use the URL from the example
var request = new HttpRequestMessage(HttpMethod.Get, "http://localhost:3000/api/v1/catalog/events");
// ✅ Use the correct API base URL
var request = new HttpRequestMessage(HttpMethod.Get, "http://tempsreel-pre.connect.tickandlive.com/api/v1/catalog/events");
Support
Need help? Check out our Support page or contact us at xxxxxxxxxxxx@tickandlive.com.