Integrate the Universal Travel Product ID registry into your systems. Search, match, and manage travel inventory with our RESTful API.
RESTful Architecture
Standard HTTP methods and JSON responses for easy integration
Secure Authentication
API keys with role-based access control and rate limiting
High Performance
99.9% uptime SLA with sub-100ms response times
Scalable Infrastructure
Handle millions of requests with automatic scaling
All API requests require authentication using an API key. Include your key in the Authorization header with every request.
Authorization Header
Authorization: Bearer YOUR_API_KEY
Example request
curl -X GET \
"https://api.tripsworld.com/registry/search?q=marina"
-H "Authorization: Bearer sk_live_xxx"
The Travel Inventory ID API provides endpoints for searching, retrieving, and managing travel product identities.
/registry/search/registry/product/{UTPID}/registry/match/registry/batch-map/registry/duplicates/{UTPID}/registry/verify/registry/statsAll responses follow a consistent JSON structure with clear status codes, pagination support, and detailed error messages.
Response includes
GET /registry/product/TW-HTL-00291847
{
"utpid": "TW-HTL-00291847",
"name": "Marina Bay Suites",
"category": "hotel",
"location": {
"city": "Singapore",
"country": "SG",
"coordinates": [1.2894, 103.8610]
},
"verified": true,
"confidence": 0.97,
"suppliers": [
{ "id": "SUP-001", "name": "Expedia" },
{ "id": "SUP-002", "name": "Booking.com" }
],
"duplicates": 2,
"lastUpdated": "2024-01-15T10:30:00Z"
}
Get started with the Travel Inventory ID API. Create an account to receive your API key and access the full documentation.
Get API Access