Mob.ly Tag Groups API

The TagGroups API from Mob.ly — 2 operation(s) for taggroups.

Operations 2

GET /tagGroups List tag groups
GET /tagGroups/{tagGroupId} Get tag group

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/mobly-taggroups-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

mobly-taggroups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mobly REST Tag Groups API
  version: v0
  description: 'Mobly REST API (version v0).


    - JSON-based

    - Authenticated via API key

    - Versioned under `/v0`

    '
servers:
- url: https://core-api.getmobly.com/api/v0
security:
- ApiKeyAuth: []
tags:
- name: TagGroups
paths:
  /tagGroups:
    get:
      summary: List tag groups
      description: List tag groups defined for the organization, including tag options.
      security:
      - ApiKeyAuth: []
      parameters:
      - in: query
        name: limit
        schema:
          type: integer
          default: 20
          maximum: 50
      - in: query
        name: offset
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: Tag groups list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TagGroupsListResponse'
      tags:
      - TagGroups
  /tagGroups/{tagGroupId}:
    get:
      summary: Get tag group
      description: Fetch a single tag group by ID.
      security:
      - ApiKeyAuth: []
      parameters:
      - in: path
        name: tagGroupId
        schema:
          type: string
        required: true
        description: Tag group ID
      responses:
        '200':
          description: Tag group.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TagGroupSingleResponse'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      tags:
      - TagGroups
components:
  schemas:
    TagGroupV0Response:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        status:
          $ref: '#/components/schemas/TagGroupStatus'
        allowsMultipleSelection:
          type: boolean
        displayOrder:
          type: integer
        usageInstructions:
          type:
          - string
          - 'null'
        required:
          type: boolean
        allEvents:
          type: boolean
        tagOptions:
          type: array
          items:
            $ref: '#/components/schemas/TagOption'
      required:
      - id
      - name
      - status
      - allowsMultipleSelection
      - displayOrder
      - required
      - allEvents
      - tagOptions
    Pagination:
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
      required:
      - limit
      - offset
    TagGroupSingleResponse:
      type: object
      properties:
        status:
          type: integer
          example: 200
        results:
          $ref: '#/components/schemas/TagGroupV0Response'
      required:
      - status
      - results
    ErrorResponse:
      type: object
      properties:
        status:
          type: integer
        error:
          type: string
      required:
      - status
      - error
    TagGroupStatus:
      type: string
      description: Tag group publication status.
      enum:
      - ARCHIVED
      - DRAFT
      - PUBLISHED
    TagGroupsListResponse:
      type: object
      properties:
        status:
          type: integer
          example: 200
        pagination:
          $ref: '#/components/schemas/Pagination'
        results:
          type: object
          properties:
            tagGroups:
              type: array
              items:
                $ref: '#/components/schemas/TagGroupV0Response'
            total:
              type: integer
      required:
      - status
      - pagination
      - results
    TagOption:
      type: object
      properties:
        id:
          type: string
          format: uuid
        displayOrder:
          type: integer
        value:
          type: string
      required:
      - id
      - displayOrder
      - value
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key