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_932d6bfdd80ad3f7",
  "category": "ip_unattached",
  "workspace_token": "wrkspc_0e0e739aacb7f268",
  "provider": "aws",
  "provider_account_id": "123456789012",
  "description": "IP address is not attached to an instance.",
  "potential_savings": "100.0",
  "service": "AWS IP",
  "created_at": "2025-08-22T20:16:37Z",
  "resources_affected_count": 0
}

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
category
string

The category of the Recommendation.

Example:

"ec2_compute_optimizer_recommender"

workspace_token
string

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

provider
string

The provider the Recommendation is for.

provider_account_id
string

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

description
string
potential_savings
string

The monthly potential savings of the Recommendation.

Example:

"100.00"

service
string

The service the Recommendation is for.

Example:

"Amazon EC2"

created_at
string

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

resources_affected_count
string

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