The Trips LLM endpoint solves the problem of verbose and complex API responses that are inefficient for Large Language Model consumption. While the regular /v3/trips endpoint returns comprehensive structured JSON data, the /v3/trips/llm endpoint provides the same travel requirements information in a concise, token-efficient markdown format specifically designed for AI applications.
This endpoint bridges the gap between comprehensive travel data and AI model
consumption, delivering significant token reduction while maintaining all
essential travel requirement information.
Challenge: Traditional API responses are too verbose and complex for efficient LLM consumption, creating barriers for modern AI-powered travel applications.
Solution: Purpose-built response format that dramatically reduces token count while preserving all critical travel requirement information.
When requesting text/markdown (default) or using ?accept=markdown, the response is returned as raw markdown text:
# Visa Requirements### You don't need a visa for Türkiye if you have a United States passport.## Türkiye### Visa is not required for a maximum of 90 days - Not requiredTravelers need a visa to visit Türkiye for Business or Tourism for more than 90 days. Travelers do not need a visa if staying for 90 days or less._Official source: [Republic of Türkiye Ministry of Foreign Affairs](https://www.mfa.gov.tr/visa-information-for-foreigners.en.mfa)__Last updated: July 28, 2025 at 12:29 PM UTC_# Passport and Documents## Türkiye### Travelers require a passport valid for at least 150 days from the time of entry - MandatoryTravelers need a valid passport to enter Türkiye. The traveler's passport must remain valid for at least 150 days after the traveler arrives in Türkiye.Travelers passport should be valid for 60 days plus 90 days visa validity which totals to 150 days.Different rules may apply to travelers who hold a residence status in Türkiye. Please check the source for more details._Official source: [Turkiye Ministry of Foreign Affairs](https://www.mfa.gov.tr/passport-validity-requirements-while-entering-turkey-in-accordance-with-law-on-foreigners-and-international-protection.en.mfa)__Last updated: July 28, 2025 at 11:36 AM UTC_# Health Risks and Requirements## Türkiye### Proof of pre-departure COVID-19 test is not required - Not requiredTravelers don't need a COVID-19 test before traveling to Türkiye._Official source: [Türkiye Ministry of Culture and Tourism](https://www.tga.gov.tr/fight-against-covid-19-in-turkey/)__Last updated: July 28, 2025 at 11:33 AM UTC_
When requesting application/json or using ?accept=json, the response is returned as structured JSON with metadata:
{ "meta": { "generatedAt": "2025-01-28T15:30:00.000Z", "locale": "en-US", "LlmModel": "NONE" }, "data": { "contentConfidence": 1, "contentType": "text/markdown", "content": "# Visa Requirements\n\n### You don't need a visa for Türkiye if you have a United States passport.\n\n## Türkiye\n\n### Visa is not required for a maximum of 90 days - Not required\n\nTravelers need a visa to visit Türkiye for Business or Tourism for more than 90 days. Travelers do not need a visa if staying for 90 days or less.\n\n_Official source: [Republic of Türkiye Ministry of Foreign Affairs](https://www.mfa.gov.tr/visa-information-for-foreigners.en.mfa)_\n\n_Last updated: July 28, 2025 at 12:29 PM UTC_\n\n# Passport and Documents\n\n## Türkiye\n\n### Travelers require a passport valid for at least 150 days from the time of entry - Mandatory\n\nTravelers need a valid passport to enter Türkiye. The traveler's passport must remain valid for at least 150 days after the traveler arrives in Türkiye.\n\n_Official source: [Turkiye Ministry of Foreign Affairs](https://www.mfa.gov.tr/passport-validity-requirements-while-entering-turkey-in-accordance-with-law-on-foreigners-and-international-protection.en.mfa)_\n\n_Last updated: July 28, 2025 at 11:36 AM UTC_\n\n# Health Risks and Requirements\n\n## Türkiye\n\n### Proof of pre-departure COVID-19 test is not required - Not required\n\nTravelers don't need a COVID-19 test before traveling to Türkiye.\n\n_Official source: [Türkiye Ministry of Culture and Tourism](https://www.tga.gov.tr/fight-against-covid-19-in-turkey/)_\n\n_Last updated: July 28, 2025 at 11:33 AM UTC_" }}
The markdown response follows a hierarchical structure organized by requirement categories and destinations. The response includes all essential travel requirement information but is optimized for natural language processing.
Each requirement typically includes the following information, though the exact format and presentation order may vary:
Requirement title and clear description
Enforcement status (mandatory, optional, not required, etc.)
Detailed explanation of the requirement
Official sources with links to government authorities
Last updated timestamps for data freshness
Additional context such as exemptions or special conditions
⚠️ Dynamic Format
The response format is optimized for LLM consumption and may evolve. While all
essential travel requirement data is included, the specific organization,
grouping names, and presentation order may change to improve token efficiency
and readability.