Get Account
curl --request GET \
--url https://veogen.studio/api/v1/accountimport requests
url = "https://veogen.studio/api/v1/account"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://veogen.studio/api/v1/account', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://veogen.studio/api/v1/account",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://veogen.studio/api/v1/account"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://veogen.studio/api/v1/account")
.asString();require 'uri'
require 'net/http'
url = URI("https://veogen.studio/api/v1/account")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"name": "<string>",
"email": "<string>",
"usd_balance": 123,
"usd_spent": 123
}
}Account
Get Account
Retrieve your account balance, spending, and usage history.
GET
/
api
/
v1
/
account
Get Account
curl --request GET \
--url https://veogen.studio/api/v1/accountimport requests
url = "https://veogen.studio/api/v1/account"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://veogen.studio/api/v1/account', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://veogen.studio/api/v1/account",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://veogen.studio/api/v1/account"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://veogen.studio/api/v1/account")
.asString();require 'uri'
require 'net/http'
url = URI("https://veogen.studio/api/v1/account")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"name": "<string>",
"email": "<string>",
"usd_balance": 123,
"usd_spent": 123
}
}Account Info
GET /account
Returns your current balance and spend totals.
Response 200 OK
Example
curl https://veogen.studio/api/v1/account \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Accept: application/json"
{
"data": {
"name": "Alex Chen",
"email": "alex@example.com",
"usd_balance": 4.25,
"usd_spent": 3.78
}
}
Usage History
GET /account/usage
Returns a paginated log of API charges.
Query Parameters
Filter by model slug (e.g.
veo-3.1-fast).Filter by generation type:
video or image.Results per page. Defaults to
25.Example
curl "https://veogen.studio/api/v1/account/usage?type=video&per_page=5" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Accept: application/json"
{
"current_page": 1,
"data": [
{
"id": 1042,
"model_key": "veo_3_1_fast",
"generation_type": "video",
"amount_usd": 0.3,
"source": "api",
"created_at": "2025-01-15T10:31:15.000000Z"
},
{
"id": 1041,
"model_key": "gpt4o_image",
"generation_type": "image",
"amount_usd": 0.02,
"source": "api",
"created_at": "2025-01-15T10:28:00.000000Z"
}
],
"per_page": 5,
"total": 28
}
Top up your balance at
veogen.studio/billing. Funds are added
instantly and never expire.
⌘I