Build with Free.ai - one Bearer token, 477 AI tools.
Chat, sary, lahatsary, mozika, feo, OCR, fandikan-teny - rehetra amin'ny farany iray mifanaraka amin'ny OpenAI. Fandaharana maimaimpoana, mari-pamantarana mangarahara, vidiny mifanaraka amin'ny sehatra.
Token maimaimpoana 30.000 isan'andro. Tsy ilaina ny karatra rehefa manomboka.
Teboka farany tokana ho an'ny fomba iray
URL iray no mifehy ny modelin'ny resadresaka tsirairay. URL iray ho an'ny modelin'ny sary tsirairay. Misafidiana ny modely amin'ny alalan'ny laha-daza tokana. Tsy misy fifampiraharahana SDK isaky ny mpamatsy.
Fandoavana vola marina, mora ampiasaina
Ny modely mizaka tena dia mandoa amin'ny vidiny fototra. Ny modely premium dia mampiditra marika mangarahara izay mihena arakaraka ny fanitarana. Ny valinteny tsirairay dia mitatitra ny vidiny marina amin'ny token.
Teny 99 tsy misy dikany
Chat, translate, TTS, STT - ny fomba rehetra dia ahitana teny 99 tsy misy fifehezana fanampiny. Mandefa ny kaody teny ary mandeha izy.
Fandefasana haingana 60 segondra
API mitovy, teny dimy. Apetraho ao ny famaha sk-free-... ary alefaso.
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"]Fividianana - miditra avy hatrany ny fihenam-bidy
Ireo modely mikarakara tena dia mandeha maimaimpoana amin'ny tahirin-kevitrao 30.000 isan'andro, avy eo mividy amin'ny vidiny fototra. Ny modely premium dia mandoa araka ny ampiasanao azy; mihena ny markup rehefa mandany 30 andro.
Fizarazarana feno ny vidin'ny entana →
Ny ambaratongan'ny fangatahana API
Manafoana hoazy ny fetra isan-bolana ho an'ny fangatahana famaha ny drafitrao - tsy mila famaha vaovao. Tsy miova ny fandoavana token isaky ny fangatahana.
| Plan | Haben'ny vidiny | Fitakiana / volana | Isa / minitra |
|---|---|---|---|
| Free | $0 | 1,000 | 60 |
| Fototra | $5/volana | 10,000 | 120 |
| Pro | $19/volana | 100,000 | 300 |
| Asa | $49/volana | 1,000,000 | 600 |
Shipping AI features inside your own product? See the Platform API for the business plans and volume pricing.
Inona no azonao atao
Ampidiro amin'ny @handle-nao ho toy ny mpisolovava amin'ny resaka
Mampianatra AI amin'ny fahalalanao, mandefa teny fanalahidy iray andalana amin'ny pejy rehetra. Miresaka amin'ny AI-nao ny mpitsidika; ny kaontinao no mandray ny vidiny.
Webhooks
Mamaritra ny fantsona fantsona miverina voamarina ho an'ny asa maharitra (famoronana lahatsary, fandikana an-tsokosoko, famoronana rohy ifampizarana, fampilazana ny tsy fahampian'ny fankatoavana). Fanekena HMAC-SHA256 ao amin'ny X-Free-Signature.
Hamorona webhooks →