ObservePoint Tags API

Endpoints for managing tags and tag-related operations including tag metadata and configuration

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/observepoint-tags-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

observepoint-tags-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Endpoints for managing tags and tag-related operations including tag metadata and configuration
  title: V2 Tags API
  version: null
servers:
- url: https://api.observepoint.com/v2
tags:
- description: Endpoints for managing tags and tag-related operations including tag metadata and configuration
  name: Tags
paths:
  /tags:
    get:
      description: <div class="op-path-box"><span class="op-http-method-get">GET</span> /v2/tags</div>
      operationId: getAllTags
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/Tag'
                type: array
      security:
      - API_Key: []
      summary: Returns all tags
      tags:
      - Tags
  /tags/{tagId}:
    get:
      description: <div class="op-path-box"><span class="op-http-method-get">GET</span> /v2/tags/<span class="op-path-parameter">{tagId}</span></div>
      operationId: getTag
      parameters:
      - name: tagId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tag'
        '403':
          description: User doesn't have permissions to get tag by given tagId
        '404':
          description: Not found tag by given tagId
      security:
      - API_Key: []
      summary: Return tag by tagId
      tags:
      - Tags
components:
  schemas:
    TagVendor:
      type: object
      required:
      - id
      - name
      properties:
        id:
          format: int32
          type: integer
        name:
          type: string
    TagCategory:
      type: object
      required:
      - id
      - name
      properties:
        id:
          format: int32
          type: integer
        name:
          type: string
      description: Tag category data
    Tag:
      type: object
      required:
      - category
      - duplicateScoring
      - icon
      - id
      - name
      properties:
        category:
          $ref: '#/components/schemas/TagCategory'
        duplicateScoring:
          type: boolean
        icon:
          description: Tag icon URI
          type: string
        id:
          format: int32
          type: integer
        name:
          type: string
        numSignatures:
          type: number
        numVariables:
          type: number
        type:
          $ref: '#/components/schemas/TagType'
        vendor:
          $ref: '#/components/schemas/TagVendor'
      description: Tag data
    TagType:
      type: object
  securitySchemes:
    API_Key:
      description: 'Use the `Authorization` header in your requests with ObservePoint API key as header value.


        Example: `Authorization: abc123...def456`'
      in: header
      name: Authorization
      type: apiKey