# T&T Hospitality LLP - Multi-Model AI Chat API

> T&T Hospitality LLP - Multi-Model AI Chat API is a paid API for AI agents from tandt.appziac.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Routes a text prompt to one of 30+ AI models from Groq, OpenAI, Anthropic, Google, DeepSeek, and others, returning the model's text response with token and cost metadata.

## Facts

- Endpoint: POST https://tandt.appziac.com/api/chat
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/t-t-hospitality-llp-multi-model-ai-chat-api-0dfe27fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2Zj7qzcVBQuNwkzBFFwV-

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability t-t-hospitality-llp-multi-model-ai-chat-api-0dfe27fb -d '<json body>'
```

Example prompt: Send this prompt to claude-sonnet and give me the response: 'Explain the difference between TCP and UDP in plain English, keep it under 150 words.' Use up to 300 tokens.

## When to prefer this

Choose this endpoint when you need pay-per-call access to a wide variety of AI models (30+) without managing separate API keys or subscriptions. It is ideal for agents that need to switch between model providers (e.g. Anthropic vs OpenAI vs Groq) through a single unified interface, or when cost predictability at $0.005/call matters. Prefer alternatives when you need streaming responses, function calling, structured outputs, or embeddings.

## Known failure modes

- Invalid or unrecognized model name returns an error
- Prompt field missing causes a 400 validation error
- Insufficient USDC payment (x402) results in 402 Payment Required
- Token limit exceeded by model constraints
- Provider-side rate limits or outages cause 5xx errors
- Empty or malformed prompt may return an unhelpful or truncated response

## How this service works

Pay-per-call AI API. 30 verified working models from Groq, OpenAI, Anthropic, Google, DeepSeek, Meta, Mistral, Qwen & more. From $0.005/call.

## Output

A JSON object containing: a unique response ID, the model name used, total tokens consumed, cost in USD, the provider name (e.g. 'openai', 'anthropic'), and the full text response from the AI model.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "prompt"
 ],
 "properties": {
  "model": {
   "type": "string",
   "description": "Model name. Options: claude-opus, claude-sonnet, command-r7b, compound, compound-mini, deepseek-r1, deepseek-r1-llama, deepseek-v3, gemini-flash, gemini-pro, gemma-27b, gpt-4.1, gpt-4.1-mini, gpt-4o, gpt-4o-mini, gpt-oss-120b, gpt-oss-20b, llama-70b, llama4-maverick, llama4-scout, mistral-medium, mistral-nemo, nova-lite, nova-pro, o3-mini, o4-mini, phi-4, qwen3-235b, qwen3-27b, qwen3-30b"
  },
  "prompt": {
   "type": "string",
   "description": "The prompt to send to the AI model"
  },
  "max_tokens": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string"
  },
  "model": {
   "type": "string"
  },
  "tokens": {
   "type": "integer"
  },
  "cost_usd": {
   "type": "number"
  },
  "provider": {
   "type": "string"
  },
  "response": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/t-t-hospitality-llp-multi-model-ai-chat-api-0dfe27fb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tandt.appziac.com](https://www.zero.xyz/host/tandt.appziac.com/llms.txt)
