Mention Tasks API

The Tasks API from Mention — 1 operation(s) for tasks.

OpenAPI Specification

mention-tasks-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Mention Accounts Tasks API
  description: Minimal OpenAPI 3.1 specification for the Mention API, covering alerts, mentions, accounts, shares, alert preferences, tags, authors, tasks, and statistics.
  version: 1.0.0
servers:
- url: https://api.mention.com/api
  description: Mention API
tags:
- name: Tasks
paths:
  /tasks/{id}:
    get:
      operationId: getTask
      summary: Fetch a task
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Task object
        default:
          description: Error response
      tags:
      - Tasks
    put:
      operationId: updateTask
      summary: Update a task
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Task updated
        default:
          description: Error response
      tags:
      - Tasks
    delete:
      operationId: deleteTask
      summary: Delete a task
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Task deleted
        default:
          description: Error response
      tags:
      - Tasks
x-generated-from: https://dev.mention.com/
x-generated-by: claude-crawl-2026-05-08