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

dragos-tags-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dragos WorldView Tags API
  version: v1
  description: API access to the WorldView Reports and Indicators
  contact:
    name: the developer
    email: support@dragos.com
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
      operationId: getApiV1Tags
      x-operation-id-source: derived
  /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
      operationId: getApiV1TagsCsv
      x-operation-id-source: derived
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