Get Profile Brief
curl --request GET \
--url https://app.digitalsurge.com.au/api/private/profile/brief/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.digitalsurge.com.au/api/private/profile/brief/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.digitalsurge.com.au/api/private/profile/brief/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"first_name": "<string>",
"last_name": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"acc_type": "<string>",
"email_verified": true,
"phone_verified": true,
"account_verification": "<string>",
"verified_account": true,
"account_frozen": true,
"account_created": "<string>",
"monthly_trading_volume": "<string>",
"broker_commission_rate": "<string>",
"account_aud_value": "<string>",
"is_vip": true,
"affiliate_code": "<string>",
"limits": {}
}Private
Get Profile Brief
Presentable profile information. Intended for use by AI agents and external integrations.
GET
/
api
/
private
/
profile
/
brief
/
Get Profile Brief
curl --request GET \
--url https://app.digitalsurge.com.au/api/private/profile/brief/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.digitalsurge.com.au/api/private/profile/brief/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.digitalsurge.com.au/api/private/profile/brief/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"first_name": "<string>",
"last_name": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"acc_type": "<string>",
"email_verified": true,
"phone_verified": true,
"account_verification": "<string>",
"verified_account": true,
"account_frozen": true,
"account_created": "<string>",
"monthly_trading_volume": "<string>",
"broker_commission_rate": "<string>",
"account_aud_value": "<string>",
"is_vip": true,
"affiliate_code": "<string>",
"limits": {}
}Authorizations
Personal API key, created in the Digital Surge app under Account Settings → API Keys. Send it with every request as Authorization: Bearer <your-api-key>.
Response
200 - application/json
Customer-safe profile snapshot for MCP / AI agent consumption.
Excludes internal flags, auth tokens, banking details, and workflow state. account_verification uses customer-facing language (no L1/L2 internal codes).
Show child attributes
Show child attributes