Get the token price list
curl --request GET \
--url https://api-service.fribl.co/api/v1/credits/costs \
--header 'x-api-key: <api-key>'import requests
url = "https://api-service.fribl.co/api/v1/credits/costs"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api-service.fribl.co/api/v1/credits/costs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-service.fribl.co/api/v1/credits/costs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-service.fribl.co/api/v1/credits/costs")
.header("x-api-key", "<api-key>")
.asString();{
"data": [
{
"action": "cv_processing",
"cost_in_credits": 1,
"description": "Process a single CV"
}
]
}{
"error": "<string>"
}Tokens
Get the token price list
Return the current price in tokens for every billable action. This is the authoritative pricing source — build cost estimates against it rather than hardcoding values.
GET
/
credits
/
costs
Get the token price list
curl --request GET \
--url https://api-service.fribl.co/api/v1/credits/costs \
--header 'x-api-key: <api-key>'import requests
url = "https://api-service.fribl.co/api/v1/credits/costs"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api-service.fribl.co/api/v1/credits/costs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-service.fribl.co/api/v1/credits/costs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-service.fribl.co/api/v1/credits/costs")
.header("x-api-key", "<api-key>")
.asString();{
"data": [
{
"action": "cv_processing",
"cost_in_credits": 1,
"description": "Process a single CV"
}
]
}{
"error": "<string>"
}