Ṣẹ̀dà láti inú Free.ai - áwọn àwọn àmì-ìwé tí a fi pamọ́, 477 AI àwọn àwọn ìṣẹ̀dá.
Chat, àwòrán, àwòrán, orin, àwòrán, OCR, fàyè gba - gbogbo àwọn nípa ààyè kejì tí a bá fẹ́ OpenAI. Aṣàfilọ́lẹ̀ ọ̀fẹ́, àwọn àmì-ìwé tí a lè rí, àwọn.
30,000 free tokens/day. Cards never required to start.
Àwọn ààyè-iṣẹ́ ìparí
One URL handles every chat model. One URL for every image model. Pick the model with a single string. No per-provider SDK shuffle.
Àwọn ààyè-iṣẹ́ àwọn ààyè-iṣẹ́
Self-hosted models bill at raw cost. Premium models add a transparent markup that drops as you scale. Every response reports the exact token cost.
99 ede ni inu bótìnì
Chat, tumọ, TTS, STT - gbogbo awọn ọna ti o tobi ju ti o ni awọn ede 99 pẹlu ko si awọn iṣeto ti o pọju. Fi koodu ede kan lọ ki o si ṣiṣẹ.
Ìṣàmúlò-ètò ìsàlẹ̀-ètò 60-sekondì
API kanna, àwọn ìtàn mẹ́tà. Fi bọ́tìnì sk-free-... rẹ̀ sínú àti láti mú.
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"]Ìṣàmúlò-ètò - àwọn ìṣàmúlò-ètò tí a fi pamọ́
Self-hosted models run free on your 30,000-token daily pool, then bill at raw cost. Premium models are pay-as-you-go; markup drops with 30-day spend.
Àwọn ìṣàmúlò-ètò API
Àwọn ìṣàmúlò-ètò rẹ̀ ń yọ ìṣàmúlò-ètò àwọn bọ́tìnì nípa ìṣàmúlò-ètò - kò ní àwọn bọ́tìnì tuntun tí a fẹ́. Àwọn ìṣàmúlò-ètò token nínú àwọn ìṣàmúlò-ètò kò yatọ.
| Àwọn ààyè-iṣẹ́ | Àwọn Ìgúnrégé | Àwọn ìtàn | Ìjánú ìtàn |
|---|---|---|---|
| Àìfẹ́ | $0 | 1,000 | 60 |
| Àwọn àgbékalẹ̀ | $5/oṣù | 10,000 | 120 |
| Àwọn Àwọn Àkọ́lé | $19/oṣù | 100,000 | 300 |
| Àwọn Àkọ́gbègbè | $49/oṣù | 1,000,000 | 600 |
Shipping AI features inside your own product? See the Platform API for the business plans and volume pricing.
Ohun tí o lè kọ̀
Fi @handle rẹ pamọ́ sínú àwọn ààyè-iṣẹ́ ìṣàfarawékọ́
Train an AI persona on your knowledge, drop a one-line script tag on any page. Visitors chat your AI; your account picks up the cost.
Àwọn àgbègbè
Fi àwọn iṣẹ́ tí a ti kọ́ nínú àwọn iṣẹ́ tí a ti n bọ́ (àwọn iṣẹ́ àwòrán, àwọn àkọ́lé, àwọn àwọn ìṣàmúlò-ètò ìṣàmúlò-ètò, àwọn ìṣàmúlò-ètò àìdá. Àwọn àmì-ìwé HMAC-SHA256 nínú àmì-ìwé X-Free.
Àtòjọ-ẹ̀yàn àwọn wẹ́ẹ̀bù →