Skip to main content
POST
/
cost-insights
/
cost-category-values
Get cost category values
curl --request POST \
  --url https://api.cloudcapital.co/v1/cost-insights/cost-category-values \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "categoryKey": "Team"
}
'
{
  "data": {
    "values": [
      "<string>"
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.cloudcapital.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication. Generate an API key from your Cloud Capital dashboard under Settings > API keys. Include it in the Authorization header as a Bearer token.

Body

application/json
categoryKey
string
required

The cost category key to get values for

Example:

"Team"

Response

Cost category values retrieved successfully

Successful HTTP responses wrap the endpoint-specific body in data. Each operation's 200 response schema is this object merged (allOf) with a data property referencing the payload schema for that endpoint.

success
enum<boolean>
required

Always true when the HTTP status is 2xx.

Available options:
true
data
object
required