Hugging Face Inference

Hugging Face Inference

active

Unified inference router across 18+ providers (Groq, SambaNova, Together, Cerebras, etc.) — free users get $0.10/month in credits, no credit card required. OpenAI-compatible endpoint with 200+ models.

https://router.huggingface.co/v1

Avg Latency

90-day Uptime

%

Rate Limits

— RPM / — RPD

Sign-up Required

Yes

Info

Base URL https://router.huggingface.co/v1
Sign-up Required Yes
Credit Card Not required
Context Window 128K
Last Verified 2026-03-30
aggregatoropenai-compatiblemulti-providervisionfunction-callembed

Models (6)

meta-llama/Llama-3.3-70B-Instruct

CTX: 128K

active

deepseek-ai/DeepSeek-V3-0324

CTX: 128K

active

openai/gpt-oss-120b

CTX: 128K

active

deepseek-ai/DeepSeek-R1

CTX: 128K

active

Qwen/Qwen3-235B-A22B

CTX: 128K

active

moonshotai/Kimi-K2-Instruct

CTX: 128K

active

Quick Start

bash
export API_KEY="your_api_key_here"
curl https://router.huggingface.co/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $API_KEY" \
  -d '{
    "model": "meta-llama/Llama-3.3-70B-Instruct",
    "messages": [
      {"role": "user", "content": "Hello! How are you?"}
    ]
  }'