Build with Free.ai - one Bearer token, 477 AI tools.
Chat, setšoantšo, video, moqoqo, puo, OCR, fetolela - tsohle ka e mong OpenAI-ka lumellanang leqepheng la ho qetela.
30,000 tokens / letsatsi mahala. Cards ha ho hlokahale ho qala.
Sebopeho sa sehlooho
URL e le 'ngoe e sebetsana le moralo oa puisano ka mong. URL e le 'ngoe bakeng sa moralo oa setšoantšo ka mong. Khetha moralo ka lentsoe leng. Ha ho na ho phutha ka SDK ea mofani ka mong.
Ho lefa ka ho hlaka, ho lefa ka ho hlaka
Li-models tse sebete tse hohelang li-billing ka theko e thata. Li-models tsa Premium li eketsa markup e hlakileng e thehiloeng ha u theha. Likarabo tsohle li bonts'a theko e nepahetseng ea token.
Li-languages tse 99 kantle ho sekoahelo
Chat, fetolela, TTS, STT - kamehla modality e kholo e ka 99 lipuo le ha ho na extra config. Pass a code ya puo le e sebetsa.
60-second quickstart
API e tšoanang, lipuo tse tharo. Tlosa konopo ea hau ea sk-free-...'me u e phethe.
curl https://api.free.ai/v1/chat/ \
-H "Authorization: Bearer sk-free-YOUR-KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen2.5-7b",
"messages": [{"role":"user","content":"Hello!"}]
}'import requests
r = requests.post(
"https://api.free.ai/v1/chat/",
headers={"Authorization": "Bearer sk-free-YOUR-KEY"},
json={
"model": "qwen2.5-7b",
"messages": [{"role": "user", "content": "Hello!"}],
},
)
print(r.json()["choices"][0]["message"]["content"])const r = await fetch("https://api.free.ai/v1/chat/", {
method: "POST",
headers: {
"Authorization": "Bearer sk-free-YOUR-KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({
model: "qwen2.5-7b",
messages: [{role: "user", content: "Hello!"}],
}),
});
const data = await r.json();
console.log(data.choices[0].message.content);package main
import (
"bytes"; "fmt"; "io"; "net/http"
)
func main() {
body := []byte(`{"model":"qwen2.5-7b","messages":[{"role":"user","content":"Hello!"}]}`)
req, _ := http.NewRequest("POST", "https://api.free.ai/v1/chat/", bytes.NewBuffer(body))
req.Header.Set("Authorization", "Bearer sk-free-YOUR-KEY")
req.Header.Set("Content-Type", "application/json")
resp, _ := http.DefaultClient.Do(req)
defer resp.Body.Close()
out, _ := io.ReadAll(resp.Body)
fmt.Println(string(out))
}require "net/http"
require "json"
uri = URI("https://api.free.ai/v1/chat/")
req = Net::HTTP::Post.new(uri, {
"Authorization" => "Bearer sk-free-YOUR-KEY",
"Content-Type" => "application/json",
})
req.body = {
model: "qwen2.5-7b",
messages: [{role: "user", content: "Hello!"}],
}.to_json
res = Net::HTTP.start(uri.host, uri.port, use_ssl: true) { |h| h.request(req) }
puts JSON.parse(res.body)["choices"][0]["message"]["content"]Litheko - litheko li tla ka ho toba
Li-models tse nang le li-hosted li sebetsa ka hohle kamoo ho ka khonehang ka 30,000-token ea hau ea letsatsi le letsatsi, ebe li lefa ka theko e boima. Li-models tsa Premium li lefa-joalo ka ha u lefa; li-markup li oela ka ho sebelisa letsatsi la 30.
Ho theola theko ka ho feletseng →
Litlhophiso tsa ho kopa API
Litlhophiso tsa hau li tlama ka ho toba ho hlokahalla ha likopo tsa li-keys ka khoeli - ha ho hlokahale likopo tse ncha. Ho lefa token ka kopo ha ho fetohe.
| Likarolo | Theko | Lipotso / khoeli | Lipalo |
|---|---|---|---|
| E le mahala | $0 | 1,000 | 60 |
| Sehlooho | $5/month | 10,000 | 120 |
| Pro | $19/mo | 100,000 | 300 |
| Bo_rakhoebo | $49/mo | 1,000,000 | 600 |
Ho romella li-AI tse nang le li-features kahare ho sehlahisoa sa hau sa hau? Bona Platform API bakeng sa litaelo tsa khoebo le ho lefa ka boholo.
Seo u ka se etsang
Ho kenya @handle ea hau e le motsamaisi oa puisano
Ho ruta AI persona ka boiphihlelo ba hau, ho tlosa tag ea script ea lebokose leng ho leqepheng lefe kapa lefe. Baeti ba bua ka AI ea hau; ak'haonte ea hau e nka theko.
Webhooks
Qwalasela ho khutlisa ho ngolisoa ka ho ngolisoa bakeng sa mesebetsi e tsamaeang ka nako e telele (video gen, batch transcription, share-link creation, low-credit alerts). HMAC-SHA256 signature in X-Free-Signature.
Ho kenya webhooks →