Marketo Tags API

Tag Controller

Operations 2

GET /rest/asset/v1/tagType/byName.json Get Tag By Name #
GET /rest/asset/v1/tagTypes.json Get Tag Types #

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

marketo-tags-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Marketo Engage Rest API
  version: '1.0'
  title: Marketo Engage Rest Tags API
  termsOfService: https://www.adobe.com/legal.html
  contact:
    name: Adobe Developer Relations
    url: https://experienceleague.adobe.com/en/docs/marketo-developer/marketo/home
    email: ''
  license:
    name: API License Agreement
    url: https://experienceleague.adobe.com/en/docs/marketo-developer/marketo/api-license
servers:
- url: https://localhost:8080/
tags:
- name: Tags
  description: Tag Controller
paths:
  /rest/asset/v1/tagType/byName.json:
    get:
      tags:
      - Tags
      summary: Get Tag By Name
      description: 'Retrieves a tag by its name. This will also return the set of valid values for the tag. Required Permissions: Read-Only Assets, Read-Write Assets'
      operationId: getTagByNameUsingGET
      parameters:
      - name: name
        in: query
        description: Name of the tag
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponseOfTagResponse'
  /rest/asset/v1/tagTypes.json:
    get:
      tags:
      - Tags
      summary: Get Tag Types
      description: 'Retrieves a list of available tag types. Required Permissions: Read-Only Assets, Read-Write Assets'
      operationId: getTagTypesUsingGET
      parameters:
      - name: maxReturn
        in: query
        description: Maximum number of records to return. Max 200, default 20
        required: false
        schema:
          type: integer
          format: int32
      - name: offset
        in: query
        description: Integer offset for paging
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponseOfTagResponseGetAll'
components:
  schemas:
    Error:
      type: object
      required:
      - code
      - message
      properties:
        code:
          type: string
          description: Error code of the error. See full list of error codes <a href="https://developers.marketo.com/rest-api/error-codes/">here</a>
        message:
          type: string
          description: Message describing the cause of the error
    ResponseOfTagResponseGetAll:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/Error'
        requestId:
          type: string
        result:
          type: array
          items:
            $ref: '#/components/schemas/TagResponseGetAll'
        success:
          type: boolean
        warnings:
          type: array
          items:
            type: string
    TagResponseGetAll:
      type: object
      required:
      - applicableProgramTypes
      - required
      - tagType
      properties:
        applicableProgramTypes:
          type: string
          description: Types of programs to which the tag can apply
        required:
          type: boolean
          description: Whether the tag is required for its applicable program types
        tagType:
          type: string
          description: Name of the tag
    TagResponse:
      type: object
      required:
      - applicableProgramTypes
      - required
      - tagType
      properties:
        allowableValues:
          type: string
          description: The list of acceptable values for the tag type
        applicableProgramTypes:
          type: string
          description: Types of programs to which the tag can apply
        required:
          type: boolean
          description: Whether the tag is required for its applicable program types
        tagType:
          type: string
          description: Name of the tag
    ResponseOfTagResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/Error'
        requestId:
          type: string
        result:
          type: array
          items:
            $ref: '#/components/schemas/TagResponse'
        success:
          type: boolean
        warnings:
          type: array
          items:
            type: string