Altimate AI RECOMMENDATIONS API
The RECOMMENDATIONS API from Altimate AI — 4 operation(s) for recommendations.
The RECOMMENDATIONS API from Altimate AI — 4 operation(s) for recommendations.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/altimate-ai-recommendations-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Fast ACCOUNT_COSTS RECOMMENDATIONS API
version: 0.1.0
servers:
- url: https://api.myaltimate.com
description: Base URL reconciled from apis.yml
tags:
- name: RECOMMENDATIONS
paths:
/recommendations/rules/:
post:
tags:
- RECOMMENDATIONS
summary: Generate Rules
operationId: generate_rules_recommendations_rules__post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/RuleRecommendationRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/RuleRecommendationResponse'
'400':
description: Not supported for public user
content:
application/json:
schema:
additionalProperties: true
type: object
title: Response 400 Generate Rules Recommendations Rules Post
'403':
description: Not supported for public user
content:
application/json:
schema:
additionalProperties: true
type: object
title: Response 403 Generate Rules Recommendations Rules Post
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
security:
- HTTPBearer: []
- HTTPBearer: []
/recommendations/terms/:
post:
tags:
- RECOMMENDATIONS
summary: Generate Terms
operationId: generate_terms_recommendations_terms__post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/TermGenerationRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/TermGenerationResponse'
'400':
description: Not supported for public user
content:
application/json:
schema:
additionalProperties: true
type: object
title: Response 400 Generate Terms Recommendations Terms Post
'403':
description: Not supported for public user
content:
application/json:
schema:
additionalProperties: true
type: object
title: Response 403 Generate Terms Recommendations Terms Post
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
deprecated: true
security:
- HTTPBearer: []
- HTTPBearer: []
/recommendations/purpose/{data_store_id}:
post:
tags:
- RECOMMENDATIONS
summary: Generate Purpose
operationId: generate_purpose_recommendations_purpose__data_store_id__post
deprecated: true
security:
- HTTPBearer: []
- HTTPBearer: []
parameters:
- name: data_store_id
in: path
required: true
schema:
type: integer
title: Data Store Id
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/StandardResponse'
'400':
description: Not supported for public user
content:
application/json:
schema:
type: object
additionalProperties: true
title: Response 400 Generate Purpose Recommendations Purpose Data Store Id Post
'403':
description: Not supported for public user
content:
application/json:
schema:
type: object
additionalProperties: true
title: Response 403 Generate Purpose Recommendations Purpose Data Store Id Post
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/recommendations/description/{resource_id}:
post:
tags:
- RECOMMENDATIONS
summary: Generate Description
operationId: generate_description_recommendations_description__resource_id__post
security:
- HTTPBearer: []
- HTTPBearer: []
parameters:
- name: resource_id
in: path
required: true
schema:
type: integer
title: Resource Id
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/StandardResponse'
'400':
description: Not supported for public user
content:
application/json:
schema:
type: object
additionalProperties: true
title: Response 400 Generate Description Recommendations Description Resource Id Post
'403':
description: Not supported for public user
content:
application/json:
schema:
type: object
additionalProperties: true
title: Response 403 Generate Description Recommendations Description Resource Id Post
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
components:
schemas:
CrossColumn:
properties:
columns:
items:
type: string
type: array
title: Columns
rules:
items:
type: string
type: array
title: Rules
type: object
required:
- columns
- rules
title: CrossColumn
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
type: array
title: Detail
type: object
title: HTTPValidationError
TermGenerationRequest:
properties:
rule:
type: string
title: Rule
data_store_type:
type: string
title: Data Store Type
type: object
required:
- rule
- data_store_type
title: TermGenerationRequest
RuleRecommendationResponse:
properties:
rule_recommendation_id:
type: string
title: Rule Recommendation Id
column_rules:
items:
additionalProperties: true
type: object
type: array
title: Column Rules
cross_column_rules:
items:
$ref: '#/components/schemas/CrossColumn'
type: array
title: Cross Column Rules
table_rules:
items:
additionalProperties: true
type: object
type: array
title: Table Rules
type: object
required:
- rule_recommendation_id
- column_rules
- cross_column_rules
- table_rules
title: RuleRecommendationResponse
RuleRecommendationRequest:
properties:
resource_id:
type: integer
title: Resource Id
column_ids:
items:
type: integer
type: array
title: Column Ids
type: object
required:
- resource_id
- column_ids
title: RuleRecommendationRequest
StandardResponse:
properties:
ok:
type: boolean
title: Ok
type: object
required:
- ok
title: StandardResponse
ValidationError:
properties:
loc:
items:
anyOf:
- type: string
- type: integer
type: array
title: Location
msg:
type: string
title: Message
type:
type: string
title: Error Type
type: object
required:
- loc
- msg
- type
title: ValidationError
TermGenerationResponse:
properties:
term_generation_id:
type: string
title: Term Generation Id
term:
type: string
title: Term
type: object
required:
- term_generation_id
- term
title: TermGenerationResponse
securitySchemes:
HTTPBearer:
type: http
scheme: bearer