Rasgo Metadata API

Table metadata operations

Operations 1

POST /public/table-metadata Attach notes to a data-warehouse table #

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/rasgo-metadata-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

rasgo-metadata-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rasgo Metadata API
  version: beta
  description: Functional endpoints for automating customer interactions with Rasgo data-warehouse metadata. Available to Rasgo customers on Enterprise plans and above. The API is in beta; Rasgo reserves the right to change endpoint names and contracts.
  contact:
    name: Rasgo
    url: https://docs.rasgoml.com/rasgo-docs/api.md
servers:
- url: https://api.rasgoml.com
  description: Production API host
security:
- bearerAuth: []
tags:
- name: Metadata
  description: Table metadata operations
paths:
  /public/table-metadata:
    post:
      operationId: sendTableMetadata
      tags:
      - Metadata
      summary: Attach notes to a data-warehouse table
      description: Send one or many natural-language notes to a fully-qualified table name (FQTN) so the Rasgo AI agent can learn about your data. Existing notes are detected and skipped to avoid duplicates. Editing and deleting notes is handled in the Rasgo WebApp, not via this endpoint.
      security:
      - bearerAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TableMetadataRequest'
            example:
              fqtn: DATABASE.SCHEMA.TABLE
              notes:
              - This is a note
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: string
              example: 'Sent 1 notes to Table DATABASE.SCHEMA.TABLE. View these changes in the Rasgo WebApp: app.rasgoml.com/datasets/{dataset}'
components:
  schemas:
    TableMetadataRequest:
      type: object
      required:
      - fqtn
      - notes
      properties:
        fqtn:
          type: string
          description: Fully-qualified table name, DATABASE.SCHEMA.TABLE.
          example: DATABASE.SCHEMA.TABLE
        notes:
          type: array
          description: One or many note strings to attach to the table.
          items:
            type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Personal Rasgo API key passed as a Bearer token. Enterprise users copy their key from the WebApp User Profile > API Key menu. Requests should also send a Rasgo-Client header.