Operational
Featherless AI
Free-tier access to a wide range of models, including uncensored variants.
Setup
1. Create an account at featherless.ai.
2. Generate an API key from the dashboard.
3. Set the environment variable below.
API Key
FEATHERLESS_API_KEY=...
Base URL
https://api.featherless.ai/v1
Models
meta-llama/Meta-Llama-3.3-70B-Instruct
Capabilities
✓ Text✓ Streaming✓ Uncensored Models
Example
curl https://api.featherless.ai/v1/chat/completions \
-H "Authorization: Bearer $FEATHERLESS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "meta-llama/Meta-Llama-3.3-70B-Instruct",
"messages": [{"role": "user", "content": "Hello"}]
}'