Guthaben abziehen
Nutzung erfassen und den Kontosaldo verringern. Gibt 402 zurück, wenn das Konto nicht genügend Guthaben hat. Dual-Authentifizierung.
curl -X POST "https://api.talkturo.com/api/credits" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN (tk_live_ or tk_test_)" \
-d '{
"accountId": "example_string",
"amount": 3.14,
"description": "example_string",
"metadata": {}
}'
import requests
import json
url = "https://api.talkturo.com/api/credits"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (tk_live_ or tk_test_)"
}
data = {
"accountId": "example_string",
"amount": 3.14,
"description": "example_string",
"metadata": {}
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
const response = await fetch("https://api.talkturo.com/api/credits", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (tk_live_ or tk_test_)"
},
body: JSON.stringify({
"accountId": "example_string",
"amount": 3.14,
"description": "example_string",
"metadata": {}
})
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
"bytes"
"encoding/json"
)
func main() {
data := []byte(`{
"accountId": "example_string",
"amount": 3.14,
"description": "example_string",
"metadata": {}
}`)
req, err := http.NewRequest("POST", "https://api.talkturo.com/api/credits", bytes.NewBuffer(data))
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN (tk_live_ or tk_test_)")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://api.talkturo.com/api/credits')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Post.new(uri)
request['Content-Type'] = 'application/json'
request['Authorization'] = 'Bearer YOUR_API_TOKEN (tk_live_ or tk_test_)'
request.body = '{
"accountId": "example_string",
"amount": 3.14,
"description": "example_string",
"metadata": {}
}'
response = http.request(request)
puts response.body
{
"success": true,
"transactionId": "example_string",
"balance": 3.14,
"autoReloadTriggered": true
}
{
"error": "Unauthorized",
"message": "Authentication required. Please provide a valid API token",
"code": 401
}
{
"error": "Error",
"message": "Unzureichendes Guthaben",
"code": 402
}
/credits
Target server for requests. Edit to use your own host.
Talkturo-API-Schlüssel. Senden als Authorization: Bearer tk_live_... oder
Authorization: Bearer tk_test_.... Standard-Scope ist *; Rate-Limit standardmäßig
1000 Anfragen pro Stunde.
Authorization: Bearer tk_live_... oder
Authorization: Bearer tk_test_.... Standard-Scope ist *; Rate-Limit standardmäßig
1000 Anfragen pro Stunde.
Authentifiziertes Talkturo-Web-Session-Cookie (Supabase-httpOnly-Session). Browser-Clients senden dies nach der Anmeldung typischerweise automatisch. Je nach Client können auch zugehörige Refresh-Cookies vorhanden sein.
The media type of the request body
Request Preview
Response
Response will appear here after sending the request
Authentication
Bearer token (tk_live_ or tk_test_). Talkturo-API-Schlüssel. Senden als Authorization: Bearer tk_live_... oder
Authorization: Bearer tk_test_.... Standard-Scope ist *; Rate-Limit standardmäßig
1000 Anfragen pro Stunde.
API Key for authentication. Authentifiziertes Talkturo-Web-Session-Cookie (Supabase-httpOnly-Session). Browser-Clients senden dies nach der Anmeldung typischerweise automatisch. Je nach Client können auch zugehörige Refresh-Cookies vorhanden sein.