dotCMS Personas API

Content persona management and targeting

Operations 2

GET /api/v1/personas List personas #
GET /api/v1/personas/{id} Get persona by ID #

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/dotcms-personas-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

dotcms-personas-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: dotCMS REST Personas API
  version: '3'
  description: Content persona management and targeting
servers:
- url: /
  description: dotCMS Server
tags:
- name: Personas
  description: Content persona management and targeting
paths:
  /api/v1/personas:
    get:
      tags:
      - Personas
      summary: List personas
      description: Returns all personas for the current site. Site can be determined from session or header.
      operationId: list_1
      responses:
        '200':
          description: Personas retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MapStringRestPersonaView'
        '400':
          description: Bad request - site ID required or invalid
          content:
            application/json: {}
        '401':
          description: Unauthorized - authentication required
          content:
            application/json: {}
        '403':
          description: Forbidden - insufficient permissions
          content:
            application/json: {}
        '500':
          description: Internal server error
          content:
            application/json: {}
  /api/v1/personas/{id}:
    get:
      tags:
      - Personas
      summary: Get persona by ID
      description: Returns a specific persona by its identifier
      operationId: self
      parameters:
      - name: siteId
        in: path
        description: Site identifier
        required: true
        schema:
          type: string
      - name: id
        in: path
        description: Persona identifier
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Persona retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RestPersona'
        '400':
          description: Bad request - persona ID or site ID required
          content:
            application/json: {}
        '401':
          description: Unauthorized - authentication required
          content:
            application/json: {}
        '403':
          description: Forbidden - insufficient permissions
          content:
            application/json: {}
        '404':
          description: Persona not found
          content:
            application/json: {}
        '500':
          description: Internal server error
          content:
            application/json: {}
components:
  schemas:
    MapStringRestPersonaView:
      type: object
      properties:
        empty:
          type: boolean
      additionalProperties:
        $ref: '#/components/schemas/RestPersona'
    RestPersona:
      type: object
      properties:
        name:
          type: string
        description:
          type: string