flip-ai

Dashboard operacional da API

Status da API operacional
Requests de API 113
Chats e completions 37
Latência média N/A
Modelo default deepseek-v4-flash
API key nas requests ativa

Modelos disponíveis

Lista filtrada pelas credenciais configuradas.

33 ativos
Modelo Provedor Uso
default flip-ai Alias para deepseek-v4-flash
clawl-alpha Xiaomi Mimo
clawm-alpha Xiaomi Mimo
mimo-v2-flash Xiaomi Mimo profound in thinking
mimo-v2-flash-studio Xiaomi Mimo
mimo-v2-omni Xiaomi Mimo profound in thinking
mimo-v2-pro Xiaomi Mimo profound in thinking
mimo-v2.1-omni Xiaomi Mimo
mimo-v2.1-omni-preview Xiaomi Mimo
mimo-v2.1-pro Xiaomi Mimo
mimo-v2.1-pro-preview Xiaomi Mimo
mimo-v2.5 Xiaomi Mimo profound in thinking
mimo-v2.5-pro Xiaomi Mimo profound in thinking
deepseek-v4-flash DeepSeek Web DeepSeek model discovered from the official Models & Pricing page; routed through the current Web default mode
deepseek-v4-flash-vision-exp DeepSeek Web DeepSeek model discovered from the official Models & Pricing page; routed through the current Web default mode
deepseek-v4-pro DeepSeek Web DeepSeek model discovered from the official Models & Pricing page; routed through Web Expert mode
deepseek-search DeepSeek Web Modelo web atual com busca ativada
kimi-k3 Kimi Web Kimi K3 via sessão do navegador
kimi-k2.6 Kimi Web Kimi K2.6 via sessão do navegador
qwen-web Qwen Web Alias for the current Qwen Web default model
qwen-web/qwen3.7-plus Qwen Web The high-performance large language model in the Qwen3.7 series, supporting text and multimodal tasks.
qwen-web/qwen3.8-max Qwen Web The flagship of Qwen3.8 model delivering state-of-the-art performance.
chatgpt-web ChatGPT Web Alias for the current ChatGPT Web default model
chatgpt-web/auto ChatGPT Web Use the right model for my request
chatgpt-web/gpt-5-3-mini ChatGPT Web Our latest and most advanced model
chatgpt-web/gpt-5-4-t-mini ChatGPT Web Our latest and most advanced model
chatgpt-web/gpt-5-5 ChatGPT Web Our latest and most advanced model
chatgpt-web/gpt-5-5-mini ChatGPT Web Our latest and most advanced model
chatgpt-web/gpt-5-6 ChatGPT Web Our latest and most advanced model
chatgpt-web/gpt-5-6-mini ChatGPT Web Our latest and most advanced model
chatgpt-web/gpt-5-6-t-mini ChatGPT Web Our latest and most advanced model
chatgpt-web/gpt-5-6-t-mini-mini ChatGPT Web Our latest and most advanced model
chatgpt-web/research ChatGPT Web Advanced Data Analysis, and DALL·E are now built into GPT-4

OpenAI compatible

curl http://localhost:3000/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_REQUEST_API_KEY" \
  -d '{
            "model": "default",
    "messages": [{"role": "user", "content": "Responda apenas: ok"}],
    "stream": false
  }'

Ollama compatible

curl http://localhost:3000/api/chat \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_REQUEST_API_KEY" \
  -d '{
    "model": "default",
    "messages": [{"role": "user", "content": "Olá"}]
  }'