Atomicwork tags API

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

Operations 5

GET /api/v1/tags Get tags #
POST /api/v1/tags Create Tag Option #
GET /api/v1/tags/{id} Get tag #
PUT /api/v1/tags/{id} Update Tag Option #
DELETE /api/v1/tags/{id} Delete Tag Option #

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

atomicwork-tags-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Atomicwork Public accessManagement Tags API
  version: 1.0.0
servers:
- url: https://{tenant}.atomicwork.com
  description: Your Atomicwork tenant
tags:
- name: tags
paths:
  /api/v1/tags:
    get:
      operationId: getapi-v-1-tags
      summary: Get tags
      tags:
      - tags
      parameters:
      - name: page
        in: query
        description: ''
        required: true
        schema:
          type: integer
          default: 1
      - name: per_page
        in: query
        description: ''
        required: false
        schema:
          type: integer
          default: 25
      - name: context_type
        in: query
        description: The type of tag entity
        required: false
        schema:
          type: string
      - name: context_id
        in: query
        description: The workspace Id
        required: false
        schema:
          type: integer
          format: int64
      - name: search_key
        in: query
        description: Search query
        required: false
        schema:
          type: string
      - name: X-Api-Key
        in: header
        required: true
        schema:
          type: string
      - name: X-Workspace-Id
        in: header
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tags_getapi_v1_tags_Response_200'
    post:
      operationId: postapi-v-1-tags
      summary: Create Tag Option
      tags:
      - tags
      parameters:
      - name: X-Api-Key
        in: header
        required: true
        schema:
          type: string
      - name: X-Workspace-Id
        in: header
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tags_postapi_v1_tags_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                context_type:
                  $ref: '#/components/schemas/ApiV1TagsPostRequestBodyContentApplicationJsonSchemaContextType'
                context_id:
                  type: integer
                  format: int64
                color_code:
                  type: string
              required:
              - name
  /api/v1/tags/{id}:
    get:
      operationId: getapi-v-1-tags-id
      summary: Get tag
      tags:
      - tags
      parameters:
      - name: id
        in: path
        description: The tag ID
        required: true
        schema:
          type: integer
          format: int64
      - name: context_id
        in: query
        description: The workspace id
        required: false
        schema:
          type: integer
          format: int64
      - name: context_type
        in: query
        description: The type of tag entity
        required: false
        schema:
          type: string
      - name: X-Api-Key
        in: header
        required: true
        schema:
          type: string
      - name: X-Workspace-Id
        in: header
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tags_getapi_v1_tags__id_Response_200'
    put:
      operationId: putapi-v-1-tags-id
      summary: Update Tag Option
      tags:
      - tags
      parameters:
      - name: id
        in: path
        description: The tag ID
        required: true
        schema:
          type: integer
          format: int64
      - name: X-Api-Key
        in: header
        required: true
        schema:
          type: string
      - name: X-Workspace-Id
        in: header
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tags_putapi_v1_tags__id_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  format: int64
                name:
                  type: string
                context_type:
                  $ref: '#/components/schemas/ApiV1TagsIdPutRequestBodyContentApplicationJsonSchemaContextType'
                color_code:
                  type: string
                context_id:
                  type: integer
                  format: int64
              required:
              - id
              - name
    delete:
      operationId: deleteapi-v-1-tags-id
      summary: Delete Tag Option
      tags:
      - tags
      parameters:
      - name: id
        in: path
        description: The tag ID
        required: true
        schema:
          type: integer
          format: int64
      - name: context_id
        in: query
        description: ID of the workspace
        required: false
        schema:
          type: integer
          format: int64
      - name: context_type
        in: query
        description: The type of Tag entity
        required: false
        schema:
          type: string
      - name: X-Api-Key
        in: header
        required: true
        schema:
          type: string
      - name: X-Workspace-Id
        in: header
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tags_deleteapi_v1_tags__id_Response_200'
components:
  schemas:
    Tags_deleteapi_v1_tags__id_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: Tags_deleteapi_v1_tags__id_Response_200
    Tags_postapi_v1_tags_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: Tags_postapi_v1_tags_Response_200
    Tags_getapi_v1_tags_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: Tags_getapi_v1_tags_Response_200
    ApiV1TagsPostRequestBodyContentApplicationJsonSchemaContextType:
      type: string
      enum:
      - COMMON
      - ASSET
      - WORKSPACE
      title: ApiV1TagsPostRequestBodyContentApplicationJsonSchemaContextType
    ApiV1TagsIdPutRequestBodyContentApplicationJsonSchemaContextType:
      type: string
      enum:
      - COMMON
      - ASSET
      - WORKSPACE
      title: ApiV1TagsIdPutRequestBodyContentApplicationJsonSchemaContextType
    Tags_getapi_v1_tags__id_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: Tags_getapi_v1_tags__id_Response_200
    Tags_putapi_v1_tags__id_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: Tags_putapi_v1_tags__id_Response_200
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key