Dragos Tags API

The Tags API from Dragos — 2 operation(s) for tags.

Operations 2

GET /api/v1/tags Returns a list of all tags
GET /api/v1/tags/csv Returns tags in CSV format

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/dragos-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

dragos-tags-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dragos WorldView Indicators Tags API
  version: v1
  description: API access to the WorldView Reports and Indicators
  contact:
    name: the developer
    email: support@dragos.com
servers:
- url: https://portal.dragos.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Tags
paths:
  /api/v1/tags:
    get:
      summary: Returns a list of all tags
      tags:
      - Tags
      security:
      - api_token: []
        api_secret: []
        npe_token: []
      parameters:
      - name: page
        in: query
        description: Page number (default 1)
        required: false
        schema:
          type: string
      - name: page_size
        in: query
        description: Page size (default 100) (max 500)
        required: false
        schema:
          type: string
      - name: tag_type
        in: query
        description: Tag type
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Success
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
  /api/v1/tags/csv:
    get:
      summary: Returns tags in CSV format
      tags:
      - Tags
      security:
      - api_token: []
        api_secret: []
        npe_token: []
      parameters:
      - name: tag_type
        in: query
        description: Tag type
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Success
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
components:
  securitySchemes:
    api_token:
      description: API Access Token
      in: header
      name: API-Token
      type: apiKey
    api_secret:
      description: API Secret Key
      in: header
      name: API-Secret
      type: apiKey
    npe_token:
      description: NPE Token
      in: header
      name: Authorization
      type: apiKey