Goals
List Goals
List all goals for the current account, optionally filtered by client_id
GET
List Goals
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List all goals for the current account, optionally filtered by client_id
curl --request GET \
--url https://api.oviond.com/v1/goals \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "goal_abc123",
"account_id": "<string>",
"name": "Q4 Revenue Target",
"target_value": 250000,
"operator": ">=",
"goal_type": "static",
"client_id": "<string>",
"description": "<string>",
"symbol": "$",
"query": null,
"created_at": null,
"updated_at": null
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.oviond.com/v1/goals \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "goal_abc123",
"account_id": "<string>",
"name": "Q4 Revenue Target",
"target_value": 250000,
"operator": ">=",
"goal_type": "static",
"client_id": "<string>",
"description": "<string>",
"symbol": "$",
"query": null,
"created_at": null,
"updated_at": null
}
]
}