Thuta Learning
AdvancedWeb Developmentintermediate

Hugging Face Inference API

Relax. We'll talk through this in plain words — no textbook voice.

Hugging Face Inference API

Endpoint: POST https://api-inference.huggingface.co/models/<owner>/<model>

curl

text
curl -X POST   -H "Authorization: Bearer $HF_TOKEN"   -H "Content-Type: application/json"   https://api-inference.huggingface.co/models/mistralai/Mixtral-8x7B-Instruct-v0.1   -d '{"inputs":"Explain REST in Burmese"}'

🎯 Result[ { "generated_text": "REST is..." } ]

Hugging Face Inference API | Thuta Learning