Pigment ViewApi API

The ViewApi API from Pigment — 1 operation(s) for viewapi.

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/pigment-viewapi-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

pigment-viewapi-api-openapi.yml Raw ↑
openapi: 3.0.4
info:
  title: Pigment External ApplicationApi ViewApi API
  version: v1-external
security:
- ApiKey: []
tags:
- name: ViewApi
paths:
  /api/v1/views:
    get:
      tags:
      - ViewApi
      description: Retrieve metadata for views on the given block
      parameters:
      - name: applicationId
        in: query
        schema:
          type: string
          format: uuid
      - name: blockId
        in: query
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Views metadata retrieval succeeded
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ViewMetadata'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ViewMetadata'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ViewMetadata'
        '401':
          description: Unauthorized
components:
  schemas:
    ViewMetadataType:
      enum:
      - Public
      - Personal
      type: string
    ViewMetadata:
      required:
      - id
      - name
      - type
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        type:
          allOf:
          - $ref: '#/components/schemas/ViewMetadataType'
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: http
      description: API Key Authorization header using the Bearer scheme.
      scheme: bearer
      bearerFormat: ApiKey