Try OWAQA in Your AI Assistant

These prompts demonstrate how AI assistants could use our REST API to provide real-time product recommendations. Note: Currently, most AI assistants (including ChatGPT) don't support direct API calls. Check out our Interactive Demo to see how it should work!

AI Assistant Compatibility

ChatGPT

Not currently supported

Claude

Not currently supported

Coming Soon

Watch for updates

Basic Product Query

Conceptual Example

This prompt will guide the AI to discover our API and make a simple product query.

I need help finding running shoes for marathon training. Please visit owaqa.com, read the robots.txt to find the llm.txt file, and use the REST API to get product recommendations. I'm an athlete looking for lightweight, sweat-proof shoes under $150.

Advanced Query with Context

This prompt demonstrates how to use multiple context parameters for more precise recommendations.

I'm looking for eco-friendly running gear. Please use the OWAQA API at owaqa.com to find sustainable products. I'm a environmentally conscious runner who needs:
- Running shoes made from recycled materials
- Budget: under $200
- Must be suitable for trail running
- Should have good reviews for durability

The AI should first check owaqa.com/robots.txt to find the llm.txt file for API documentation.

How It Works

When an AI assistant receives one of these prompts, it will:

  1. Visit owaqa.com and read robots.txt
  2. Find and read llm.txt for API documentation
  3. Make a POST request to /api/query with structured data
  4. Process the response and provide recommendations

Example API Request:

POST https://owaqa.com/api/query
Content-Type: application/json

{
  "intent": "marathon training",
  "audience": "athletes",
  "budget": "under $150",
  "context": "lightweight, sweat-proof"
}