Vineyard Metadata API

Inspect and manage object metadata

Operations 1

GET /objects/{objectId}/metadata Get Object 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/vineyard-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

vineyard-metadata-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Vineyard Python Client Blobs Metadata API
  description: The Vineyard Python client API provides programmatic access to the Vineyard in-memory immutable data manager (v6d), a CNCF project. Clients connect via IPC (UNIX domain socket) for zero-copy local access or via RPC (TCP) for remote access. The API supports storing, retrieving, naming, persisting, and deleting distributed in-memory objects.
  version: 0.19.0
  contact:
    name: Vineyard Community
    url: https://v6d.io/
  license:
    name: Apache 2.0
    url: https://github.com/v6d-io/v6d/blob/main/LICENSE
servers:
- url: ipc://{socket}
  description: IPC socket connection (local zero-copy access)
  variables:
    socket:
      default: /var/run/vineyard.sock
- url: tcp://{host}:{port}
  description: RPC TCP connection (remote access)
  variables:
    host:
      default: localhost
    port:
      default: '9600'
tags:
- name: Metadata
  description: Inspect and manage object metadata
paths:
  /objects/{objectId}/metadata:
    get:
      operationId: getObjectMetadata
      summary: Get Object Metadata
      description: Fetch the metadata of a vineyard object, including typename, nbytes, isglobal, islocal, and all custom key-value metadata properties.
      tags:
      - Metadata
      parameters:
      - name: objectId
        in: path
        required: true
        description: The ObjectID to inspect
        schema:
          type: string
      responses:
        '200':
          description: Metadata retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObjectMetadata'
        '404':
          description: Object not found
components:
  schemas:
    ObjectMetadata:
      type: object
      description: Metadata for a vineyard object
      properties:
        id:
          type: string
          description: The ObjectID
        typename:
          type: string
          description: Type name of the object (e.g., vineyard::Tensor<float64>, vineyard::DataFrame, vineyard::RecordBatch)
        nbytes:
          type: integer
          description: Memory size in bytes
        isglobal:
          type: boolean
          description: Whether the object is globally persistent across instances
        islocal:
          type: boolean
          description: Whether the object is local to this vineyard instance
        instance_id:
          type: integer
          description: The vineyard instance ID where the object resides
        hostname:
          type: string
          description: Hostname of the vineyard instance
        extra:
          type: object
          description: Additional custom key-value metadata properties
          additionalProperties:
            type: string
externalDocs:
  description: Vineyard Python API Reference
  url: https://v6d.io/notes/references/python-api.html