Altimate AI RESOURCES API

The RESOURCES API from Altimate AI — 2 operation(s) for resources.

Operations 4

POST /data_stores/{data_store_id}/resources Create Resource #
GET /data_stores/{data_store_id}/resources Get Resource #
PUT /data_stores/{data_store_id}/resources Update Resource #
POST /data_stores/{data_store_id}/resources/{resource_id}/metadata Add Metadata #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • 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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/altimate-ai-resources-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

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 Specification

altimate-ai-resources-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fast ACCOUNT_COSTS RESOURCES API
  version: 0.1.0
servers:
- url: https://api.myaltimate.com
  description: Base URL reconciled from apis.yml
tags:
- name: RESOURCES
paths:
  /data_stores/{data_store_id}/resources:
    post:
      tags:
      - RESOURCES
      summary: Create Resource
      description: 'Create a data store in the database.

        :param db: The database session for accessing the database.

        :param data_store_creation_request: The data store creation request containing the data store definition and other

        metadata.

        :param auth: The authorization token for the request.

        :return: A data store creation response containing the data store ID, and a message.'
      operationId: create_resource_data_stores__data_store_id__resources_post
      deprecated: true
      security:
      - HTTPBearer: []
      - HTTPBearer: []
      parameters:
      - name: data_store_id
        in: path
        required: true
        schema:
          type: integer
          title: Data Store Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResourceCreationRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResourceCreationResponse'
        '400':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 400 Create Resource Data Stores  Data Store Id  Resources Post
        '403':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 403 Create Resource Data Stores  Data Store Id  Resources Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    get:
      tags:
      - RESOURCES
      summary: Get Resource
      description: 'Get resources given data store id from the database.

        :param db: The database session for accessing the database.'
      operationId: get_resource_data_stores__data_store_id__resources_get
      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/ResourceFetchResponse'
        '400':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 400 Get Resource Data Stores  Data Store Id  Resources Get
        '403':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 403 Get Resource Data Stores  Data Store Id  Resources Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    put:
      tags:
      - RESOURCES
      summary: Update Resource
      description: ':param db: The database session for accessing the database.

        :param auth: The authorization token for the request.

        :param data_store_id: The id of the data store.

        :param resource_update_request: The data required for updating resource.

        :return: resource id'
      operationId: update_resource_data_stores__data_store_id__resources_put
      deprecated: true
      security:
      - HTTPBearer: []
      - HTTPBearer: []
      parameters:
      - name: data_store_id
        in: path
        required: true
        schema:
          type: integer
          title: Data Store Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResourceUpdateRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResourceUpdateResponse'
        '400':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 400 Update Resource Data Stores  Data Store Id  Resources Put
        '403':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 403 Update Resource Data Stores  Data Store Id  Resources Put
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /data_stores/{data_store_id}/resources/{resource_id}/metadata:
    post:
      tags:
      - RESOURCES
      summary: Add Metadata
      description: 'Get resources given data store id from the database.

        :param db: The database session for accessing the database.'
      operationId: add_metadata_data_stores__data_store_id__resources__resource_id__metadata_post
      deprecated: true
      security:
      - HTTPBearer: []
      - HTTPBearer: []
      parameters:
      - name: data_store_id
        in: path
        required: true
        schema:
          type: integer
          title: Data Store Id
      - name: resource_id
        in: path
        required: true
        schema:
          type: integer
          title: Resource Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MetadataCreationRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MetadataCreationResponse'
        '400':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 400 Add Metadata Data Stores  Data Store Id  Resources  Resource Id  Metadata Post
        '403':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 403 Add Metadata Data Stores  Data Store Id  Resources  Resource Id  Metadata Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ResourceFetchResponse:
      properties:
        resources:
          items:
            $ref: '#/components/schemas/ResourceResponse'
          type: array
          title: Resources
      type: object
      required:
      - resources
      title: ResourceFetchResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    MetadataCreationResponse:
      properties:
        message:
          type: string
          title: Message
      type: object
      required:
      - message
      title: MetadataCreationResponse
    MetadataCreationRequest:
      properties:
        resource:
          additionalProperties: true
          type: object
          title: Resource
        columns:
          additionalProperties: true
          type: object
          title: Columns
      type: object
      required:
      - resource
      - columns
      title: MetadataCreationRequest
    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
    ResourceResponse:
      properties:
        id:
          type: integer
          title: Id
        identifier:
          type: string
          title: Identifier
        options:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Options
      type: object
      required:
      - id
      - identifier
      title: ResourceResponse
    ResourceUpdateRequest:
      properties:
        identifier:
          type: string
          title: Identifier
        resource_schema:
          additionalProperties: true
          type: object
          title: Resource Schema
        options:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Options
      type: object
      required:
      - identifier
      - resource_schema
      title: ResourceUpdateRequest
    ResourceCreationResponse:
      properties:
        id:
          type: integer
          title: Id
        message:
          type: string
          title: Message
      type: object
      required:
      - id
      - message
      title: ResourceCreationResponse
    ResourceCreationRequest:
      properties:
        identifier:
          type: string
          title: Identifier
        resource_schema:
          additionalProperties: true
          type: object
          title: Resource Schema
        options:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Options
      type: object
      required:
      - identifier
      - resource_schema
      title: ResourceCreationRequest
    ResourceUpdateResponse:
      properties:
        id:
          type: integer
          title: Id
        message:
          type: string
          title: Message
      type: object
      required:
      - id
      - message
      title: ResourceUpdateResponse
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer