curl --request GET \
--url https://app.famulor.io/api/v1/me \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.famulor.io/api/v1/me"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.famulor.io/api/v1/me', 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://app.famulor.io/api/v1/me",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://app.famulor.io/api/v1/me"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.famulor.io/api/v1/me")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.famulor.io/api/v1/me")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"api_key": {
"id": "k1b2c3d4-0000-4000-8000-000000000070",
"name": "Production",
"prefix": "fam_Ab12Cd34",
"scopes": [],
"created_at": "2026-06-01T12:00:00Z",
"last_used_at": "2026-07-04T09:00:00Z",
"expires_at": null
},
"tenant": {
"id": "t1b2c3d4-0000-4000-8000-000000000002",
"name": "Acme Corp"
},
"user_id": "u1b2c3d4-0000-4000-8000-000000000003",
"plan": {
"id": "pl1b2c3d-0000-4000-8000-000000000080",
"name": "Pro",
"price_monthly_cents": 9900,
"included_minutes": 1000,
"extra_minute_cost_cents": 12,
"currency": "EUR"
},
"limits": {
"max_assistants": 10,
"max_campaigns": 5,
"max_cloned_voices": 3,
"max_knowledgebases": 5,
"max_tools": 20,
"max_parallel_calls": 5,
"max_automation_runs": 100,
"max_crm_syncs": 3,
"max_crm_synced_contacts": 25000,
"max_own_numbers": 3,
"max_members": 5
},
"features": {
"web_widget": true,
"secondary_languages": true,
"automation_platform": true,
"calendar_integrations": true,
"custom_dashboards": false,
"flow_builder": true,
"connect_ai_mcp": true,
"whitelabel_enabled": false,
"live_monitoring": true,
"simulations": false
},
"display_currency": "USD",
"display_currency_rate": 1.08
}
}{
"error": {
"code": "unauthorized",
"message": "Invalid API key."
}
}Get current credential
Self-inspection of the calling API key: key metadata, workspace (tenant), active plan, and effective limits/feature toggles (-1 = unlimited, 0 = disabled). No scope required — any valid key works.
curl --request GET \
--url https://app.famulor.io/api/v1/me \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.famulor.io/api/v1/me"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.famulor.io/api/v1/me', 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://app.famulor.io/api/v1/me",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://app.famulor.io/api/v1/me"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.famulor.io/api/v1/me")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.famulor.io/api/v1/me")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"api_key": {
"id": "k1b2c3d4-0000-4000-8000-000000000070",
"name": "Production",
"prefix": "fam_Ab12Cd34",
"scopes": [],
"created_at": "2026-06-01T12:00:00Z",
"last_used_at": "2026-07-04T09:00:00Z",
"expires_at": null
},
"tenant": {
"id": "t1b2c3d4-0000-4000-8000-000000000002",
"name": "Acme Corp"
},
"user_id": "u1b2c3d4-0000-4000-8000-000000000003",
"plan": {
"id": "pl1b2c3d-0000-4000-8000-000000000080",
"name": "Pro",
"price_monthly_cents": 9900,
"included_minutes": 1000,
"extra_minute_cost_cents": 12,
"currency": "EUR"
},
"limits": {
"max_assistants": 10,
"max_campaigns": 5,
"max_cloned_voices": 3,
"max_knowledgebases": 5,
"max_tools": 20,
"max_parallel_calls": 5,
"max_automation_runs": 100,
"max_crm_syncs": 3,
"max_crm_synced_contacts": 25000,
"max_own_numbers": 3,
"max_members": 5
},
"features": {
"web_widget": true,
"secondary_languages": true,
"automation_platform": true,
"calendar_integrations": true,
"custom_dashboards": false,
"flow_builder": true,
"connect_ai_mcp": true,
"whitelabel_enabled": false,
"live_monitoring": true,
"simulations": false
},
"display_currency": "USD",
"display_currency_rate": 1.08
}
}{
"error": {
"code": "unauthorized",
"message": "Invalid API key."
}
}Authorizations
API key (fam_..., created under Settings → API Keys) or an OAuth 2.0 access token (fam_at_...). Keys can be restricted to scopes such as assistants:read, calls:write, campaigns:write, automations:read, dashboards:read, dashboards:write, leads:write, segments:write, phone_numbers:write, sip_trunks:write, knowledge:write, voices:read, billing:read, settings:write, platform:read, platform:write; a *:write scope implies the matching *:read. Automation and dashboard endpoints also accept the legacy calls:* scope. Keys without scope restrictions have full access.
Response
Metadata of the calling credential.
Show child attributes
Show child attributes