Skip to main content
GET
/
recommendations
/
{recommendation_token}
Get recommendation by token
curl --request GET \
  --url https://api.vantage.sh/v2/recommendations/{recommendation_token} \
  --header 'Authorization: Bearer <token>'
{
  "token": "rcmmndtn_8a46f3b2590e2e79",
  "category": "ip_unattached",
  "workspace_token": "wrkspc_409c070f69640c8c",
  "provider": "aws",
  "provider_account_id": "123456789012",
  "description": "IP address is not attached to an instance.",
  "potential_savings": "100.0",
  "service": "AWS IP",
  "created_at": "2026-01-23T21:26:58Z",
  "resources_affected_count": 0,
  "currency_code": "USD",
  "currency_symbol": "$"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

recommendation_token
string
required

Response

Recommendation model

token
string
required
category
string | null
required

The category of the Recommendation.

Example:

"ec2_compute_optimizer_recommender"

workspace_token
string
required

The token for the Workspace the Recommendation is a part of.

provider
string
required

The provider the Recommendation is for.

provider_account_id
string | null
required

The account ID of the provider. For Azure, this is the subscription ID.

description
string
required
potential_savings
string | null
required

The monthly potential savings of the Recommendation, converted to the organization's selected currency.

Example:

"100.00"

service
string
required

The service the Recommendation is for.

Example:

"Amazon EC2"

created_at
string
required

The date and time, in UTC, the Recommendation was created. ISO 8601 Formatted.

resources_affected_count
string
required

The number of ProviderResources related to the Recommendation. Use the recommendations/:token/resources endpoint to get the full list of resources.

currency_code
string

The currency code used by the Workspace to which this Recommendation belongs.

Example:

"EUR"

currency_symbol
string

The currency symbol used by the Workspace to which this Recommendation belongs.

Example:

"EUR"