Misskey charts API

The charts API from Misskey — 12 operation(s) for charts.

Operations 24

GET /charts/active-users charts/active-users #
POST /charts/active-users charts/active-users #
GET /charts/ap-request charts/ap-request #
POST /charts/ap-request charts/ap-request #
GET /charts/drive charts/drive #
POST /charts/drive charts/drive #
GET /charts/federation charts/federation #
POST /charts/federation charts/federation #
GET /charts/instance charts/instance #
POST /charts/instance charts/instance #
GET /charts/notes charts/notes #
POST /charts/notes charts/notes #
GET /charts/user/drive charts/user/drive #
POST /charts/user/drive charts/user/drive #
GET /charts/user/following charts/user/following #
POST /charts/user/following charts/user/following #
GET /charts/user/notes charts/user/notes #
POST /charts/user/notes charts/user/notes #
GET /charts/user/pv charts/user/pv #
POST /charts/user/pv charts/user/pv #
GET /charts/user/reactions charts/user/reactions #
POST /charts/user/reactions charts/user/reactions #
GET /charts/users charts/users #
POST /charts/users charts/users #

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/misskey-charts-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

misskey-charts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 2025.4.1-io.12b-fb6fbea074
  title: Misskey account Charts API
servers:
- url: https://misskey.io/api
tags:
- name: charts
paths:
  /charts/active-users:
    get:
      operationId: get___charts___active-users
      summary: charts/active-users
      description: 'No description provided.


        **Credential required**: *No*'
      externalDocs:
        description: Source code
        url: https://github.com/MisskeyIO/misskey/blob/io/packages/backend/src/server/api/endpoints/charts/active-users.ts
      tags:
      - charts
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                span:
                  type: string
                  enum:
                  - day
                  - hour
                limit:
                  type: integer
                  minimum: 1
                  maximum: 500
                  default: 30
                offset:
                  type:
                  - integer
                  - 'null'
                  default: null
              required:
              - span
      responses:
        '200':
          description: OK (with results)
          content:
            application/json:
              schema:
                type: object
                properties:
                  readWrite:
                    type: array
                    items:
                      type: number
                  read:
                    type: array
                    items:
                      type: number
                  write:
                    type: array
                    items:
                      type: number
                  registeredWithinWeek:
                    type: array
                    items:
                      type: number
                  registeredWithinMonth:
                    type: array
                    items:
                      type: number
                  registeredWithinYear:
                    type: array
                    items:
                      type: number
                  registeredOutsideWeek:
                    type: array
                    items:
                      type: number
                  registeredOutsideMonth:
                    type: array
                    items:
                      type: number
                  registeredOutsideYear:
                    type: array
                    items:
                      type: number
                required:
                - readWrite
                - read
                - write
                - registeredWithinWeek
                - registeredWithinMonth
                - registeredWithinYear
                - registeredOutsideWeek
                - registeredOutsideMonth
                - registeredOutsideYear
        '400':
          description: Client error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                INVALID_PARAM:
                  value:
                    error:
                      message: Invalid param.
                      code: INVALID_PARAM
                      id: 3d81ceae-475f-4600-b2a8-2bc116157532
        '401':
          description: Authentication error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                CREDENTIAL_REQUIRED:
                  value:
                    error:
                      message: Credential required.
                      code: CREDENTIAL_REQUIRED
                      id: 1384574d-a912-4b81-8601-c7b1c4085df1
        '403':
          description: Forbidden error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                AUTHENTICATION_FAILED:
                  value:
                    error:
                      message: Authentication failed. Please ensure your token is correct.
                      code: AUTHENTICATION_FAILED
                      id: b0a7f5f8-dc2f-4171-b91f-de88ad238e14
        '418':
          description: I'm Ai
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                I_AM_AI:
                  value:
                    error:
                      message: You sent a request to Ai-chan, Misskey's showgirl, instead of the server.
                      code: I_AM_AI
                      id: 60c46cd1-f23a-46b1-bebe-5d2b73951a84
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                INTERNAL_ERROR:
                  value:
                    error:
                      message: Internal error occurred. Please contact us if the error persists.
                      code: INTERNAL_ERROR
                      id: 5d37dbcb-891e-41ca-a3d6-e690c97775ac
    post:
      operationId: post___charts___active-users
      summary: charts/active-users
      description: 'No description provided.


        **Credential required**: *No*'
      externalDocs:
        description: Source code
        url: https://github.com/MisskeyIO/misskey/blob/io/packages/backend/src/server/api/endpoints/charts/active-users.ts
      tags:
      - charts
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                span:
                  type: string
                  enum:
                  - day
                  - hour
                limit:
                  type: integer
                  minimum: 1
                  maximum: 500
                  default: 30
                offset:
                  type:
                  - integer
                  - 'null'
                  default: null
              required:
              - span
      responses:
        '200':
          description: OK (with results)
          content:
            application/json:
              schema:
                type: object
                properties:
                  readWrite:
                    type: array
                    items:
                      type: number
                  read:
                    type: array
                    items:
                      type: number
                  write:
                    type: array
                    items:
                      type: number
                  registeredWithinWeek:
                    type: array
                    items:
                      type: number
                  registeredWithinMonth:
                    type: array
                    items:
                      type: number
                  registeredWithinYear:
                    type: array
                    items:
                      type: number
                  registeredOutsideWeek:
                    type: array
                    items:
                      type: number
                  registeredOutsideMonth:
                    type: array
                    items:
                      type: number
                  registeredOutsideYear:
                    type: array
                    items:
                      type: number
                required:
                - readWrite
                - read
                - write
                - registeredWithinWeek
                - registeredWithinMonth
                - registeredWithinYear
                - registeredOutsideWeek
                - registeredOutsideMonth
                - registeredOutsideYear
        '400':
          description: Client error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                INVALID_PARAM:
                  value:
                    error:
                      message: Invalid param.
                      code: INVALID_PARAM
                      id: 3d81ceae-475f-4600-b2a8-2bc116157532
        '401':
          description: Authentication error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                CREDENTIAL_REQUIRED:
                  value:
                    error:
                      message: Credential required.
                      code: CREDENTIAL_REQUIRED
                      id: 1384574d-a912-4b81-8601-c7b1c4085df1
        '403':
          description: Forbidden error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                AUTHENTICATION_FAILED:
                  value:
                    error:
                      message: Authentication failed. Please ensure your token is correct.
                      code: AUTHENTICATION_FAILED
                      id: b0a7f5f8-dc2f-4171-b91f-de88ad238e14
        '418':
          description: I'm Ai
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                I_AM_AI:
                  value:
                    error:
                      message: You sent a request to Ai-chan, Misskey's showgirl, instead of the server.
                      code: I_AM_AI
                      id: 60c46cd1-f23a-46b1-bebe-5d2b73951a84
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                INTERNAL_ERROR:
                  value:
                    error:
                      message: Internal error occurred. Please contact us if the error persists.
                      code: INTERNAL_ERROR
                      id: 5d37dbcb-891e-41ca-a3d6-e690c97775ac
  /charts/ap-request:
    get:
      operationId: get___charts___ap-request
      summary: charts/ap-request
      description: 'No description provided.


        **Credential required**: *No*'
      externalDocs:
        description: Source code
        url: https://github.com/MisskeyIO/misskey/blob/io/packages/backend/src/server/api/endpoints/charts/ap-request.ts
      tags:
      - charts
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                span:
                  type: string
                  enum:
                  - day
                  - hour
                limit:
                  type: integer
                  minimum: 1
                  maximum: 500
                  default: 30
                offset:
                  type:
                  - integer
                  - 'null'
                  default: null
              required:
              - span
      responses:
        '200':
          description: OK (with results)
          content:
            application/json:
              schema:
                type: object
                properties:
                  deliverFailed:
                    type: array
                    items:
                      type: number
                  deliverSucceeded:
                    type: array
                    items:
                      type: number
                  inboxReceived:
                    type: array
                    items:
                      type: number
                required:
                - deliverFailed
                - deliverSucceeded
                - inboxReceived
        '400':
          description: Client error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                INVALID_PARAM:
                  value:
                    error:
                      message: Invalid param.
                      code: INVALID_PARAM
                      id: 3d81ceae-475f-4600-b2a8-2bc116157532
        '401':
          description: Authentication error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                CREDENTIAL_REQUIRED:
                  value:
                    error:
                      message: Credential required.
                      code: CREDENTIAL_REQUIRED
                      id: 1384574d-a912-4b81-8601-c7b1c4085df1
        '403':
          description: Forbidden error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                AUTHENTICATION_FAILED:
                  value:
                    error:
                      message: Authentication failed. Please ensure your token is correct.
                      code: AUTHENTICATION_FAILED
                      id: b0a7f5f8-dc2f-4171-b91f-de88ad238e14
        '418':
          description: I'm Ai
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                I_AM_AI:
                  value:
                    error:
                      message: You sent a request to Ai-chan, Misskey's showgirl, instead of the server.
                      code: I_AM_AI
                      id: 60c46cd1-f23a-46b1-bebe-5d2b73951a84
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                INTERNAL_ERROR:
                  value:
                    error:
                      message: Internal error occurred. Please contact us if the error persists.
                      code: INTERNAL_ERROR
                      id: 5d37dbcb-891e-41ca-a3d6-e690c97775ac
    post:
      operationId: post___charts___ap-request
      summary: charts/ap-request
      description: 'No description provided.


        **Credential required**: *No*'
      externalDocs:
        description: Source code
        url: https://github.com/MisskeyIO/misskey/blob/io/packages/backend/src/server/api/endpoints/charts/ap-request.ts
      tags:
      - charts
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                span:
                  type: string
                  enum:
                  - day
                  - hour
                limit:
                  type: integer
                  minimum: 1
                  maximum: 500
                  default: 30
                offset:
                  type:
                  - integer
                  - 'null'
                  default: null
              required:
              - span
      responses:
        '200':
          description: OK (with results)
          content:
            application/json:
              schema:
                type: object
                properties:
                  deliverFailed:
                    type: array
                    items:
                      type: number
                  deliverSucceeded:
                    type: array
                    items:
                      type: number
                  inboxReceived:
                    type: array
                    items:
                      type: number
                required:
                - deliverFailed
                - deliverSucceeded
                - inboxReceived
        '400':
          description: Client error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                INVALID_PARAM:
                  value:
                    error:
                      message: Invalid param.
                      code: INVALID_PARAM
                      id: 3d81ceae-475f-4600-b2a8-2bc116157532
        '401':
          description: Authentication error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                CREDENTIAL_REQUIRED:
                  value:
                    error:
                      message: Credential required.
                      code: CREDENTIAL_REQUIRED
                      id: 1384574d-a912-4b81-8601-c7b1c4085df1
        '403':
          description: Forbidden error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                AUTHENTICATION_FAILED:
                  value:
                    error:
                      message: Authentication failed. Please ensure your token is correct.
                      code: AUTHENTICATION_FAILED
                      id: b0a7f5f8-dc2f-4171-b91f-de88ad238e14
        '418':
          description: I'm Ai
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                I_AM_AI:
                  value:
                    error:
                      message: You sent a request to Ai-chan, Misskey's showgirl, instead of the server.
                      code: I_AM_AI
                      id: 60c46cd1-f23a-46b1-bebe-5d2b73951a84
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                INTERNAL_ERROR:
                  value:
                    error:
                      message: Internal error occurred. Please contact us if the error persists.
                      code: INTERNAL_ERROR
                      id: 5d37dbcb-891e-41ca-a3d6-e690c97775ac
  /charts/drive:
    get:
      operationId: get___charts___drive
      summary: charts/drive
      description: 'No description provided.


        **Credential required**: *No*'
      externalDocs:
        description: Source code
        url: https://github.com/MisskeyIO/misskey/blob/io/packages/backend/src/server/api/endpoints/charts/drive.ts
      tags:
      - charts
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                span:
                  type: string
                  enum:
                  - day
                  - hour
                limit:
                  type: integer
                  minimum: 1
                  maximum: 500
                  default: 30
                offset:
                  type:
                  - integer
                  - 'null'
                  default: null
              required:
              - span
      responses:
        '200':
          description: OK (with results)
          content:
            application/json:
              schema:
                type: object
                properties:
                  local:
                    type: object
                    properties:
                      incCount:
                        type: array
                        items:
                          type: number
                      incSize:
                        type: array
                        items:
                          type: number
                      decCount:
                        type: array
                        items:
                          type: number
                      decSize:
                        type: array
                        items:
                          type: number
                    required:
                    - incCount
                    - incSize
                    - decCount
                    - decSize
                  remote:
                    type: object
                    properties:
                      incCount:
                        type: array
                        items:
                          type: number
                      incSize:
                        type: array
                        items:
                          type: number
                      decCount:
                        type: array
                        items:
                          type: number
                      decSize:
                        type: array
                        items:
                          type: number
                    required:
                    - incCount
                    - incSize
                    - decCount
                    - decSize
                required:
                - local
                - remote
        '400':
          description: Client error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                INVALID_PARAM:
                  value:
                    error:
                      message: Invalid param.
                      code: INVALID_PARAM
                      id: 3d81ceae-475f-4600-b2a8-2bc116157532
        '401':
          description: Authentication error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                CREDENTIAL_REQUIRED:
                  value:
                    error:
                      message: Credential required.
                      code: CREDENTIAL_REQUIRED
                      id: 1384574d-a912-4b81-8601-c7b1c4085df1
        '403':
          description: Forbidden error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                AUTHENTICATION_FAILED:
                  value:
                    error:
                      message: Authentication failed. Please ensure your token is correct.
                      code: AUTHENTICATION_FAILED
                      id: b0a7f5f8-dc2f-4171-b91f-de88ad238e14
        '418':
          description: I'm Ai
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                I_AM_AI:
                  value:
                    error:
                      message: You sent a request to Ai-chan, Misskey's showgirl, instead of the server.
                      code: I_AM_AI
                      id: 60c46cd1-f23a-46b1-bebe-5d2b73951a84
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                INTERNAL_ERROR:
                  value:
                    error:
                      message: Internal error occurred. Please contact us if the error persists.
                      code: INTERNAL_ERROR
                      id: 5d37dbcb-891e-41ca-a3d6-e690c97775ac
    post:
      operationId: post___charts___drive
      summary: charts/drive
      description: 'No description provided.


        **Credential required**: *No*'
      externalDocs:
        description: Source code
        url: https://github.com/MisskeyIO/misskey/blob/io/packages/backend/src/server/api/endpoints/charts/drive.ts
      tags:
      - charts
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                span:
                  type: string
                  enum:
                  - day
                  - hour
                limit:
                  type: integer
                  minimum: 1
                  maximum: 500
                  default: 30
                offset:
                  type:
                  - integer
                  - 'null'
                  default: null
              required:
              - span
      responses:
        '200':
          description: OK (with results)
          content:
            application/json:
              schema:
                type: object
                properties:
                  local:
                    type: object
                    properties:
                      incCount:
                        type: array
                        items:
                          type: number
                      incSize:
                        type: array
                        items:
                          type: number
                      decCount:
                        type: array
                        items:
                          type: number
                      decSize:
                        type: array
                        items:
                          type: number
                    required:
                    - incCount
                    - incSize
                    - decCount
                    - decSize
                  remote:
                    type: object
                    properties:
                      incCount:
                        type: array
                        items:
                          type: number
                      incSize:
                        type: array
                        items:
                          type: number
                      decCount:
                        type: array
                        items:
                          type: number
                      decSize:
                        type: array
                        items:
                          type: number
                    required:
                    - incCount
                    - incSize
                    - decCount
                    - decSize
                required:
                - local
                - remote
        '400':
          description: Client error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                INVALID_PARAM:
                  value:
                    error:
                      message: Invalid param.
                      code: INVALID_PARAM
                      id: 3d81ceae-475f-4600-b2a8-2bc116157532
        '401':
          description: Authentication error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                CREDENTIAL_REQUIRED:
                  value:
                    error:
                      message: Credential required.
                      code: CREDENTIAL_REQUIRED
                      id: 1384574d-a912-4b81-8601-c7b1c4085df1
        '403':
          description: Forbidden error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                AUTHENTICATION_FAILED:
                  value:
                    error:
                      message: Authentication failed. Please ensure your token is correct.
                      code: AUTHENTICATION_FAILED
                      id: b0a7f5f8-dc2f-4171-b91f-de88ad238e14
        '418':
          description: I'm Ai
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                I_AM_AI:
                  value:
                    error:
                      message: You sent a request to Ai-chan, Misskey's showgirl, instead of the server.
                      code: I_AM_AI
                      id: 60c46cd1-f23a-46b1-bebe-5d2b73951a84
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                INTERNAL_ERROR:
                  value:
                    error:
                      message: Internal error occurred. Please contact us if the error persists.
                      code: INTERNAL_ERROR
                      id: 5d37dbcb-891e-41ca-a3d6-e690c97775ac
  /charts/federation:
    get:
      operationId: get___charts___federation
      summary: charts/federation
      description: 'No description provided.


        **Credential required**: *No*'
      externalDocs:
        description: Source code
        url: https://github.com/MisskeyIO/misskey/blob/io/packages/backend/src/server/api/endpoints/charts/federation.ts
      tags:
      - charts
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                span:
                  type: string
                  enum:
                  - day
                  - hour
                limit:
                  type: integer
                  minimum: 1
                  maximum: 500
                  default: 30
                offset:
                  type:
                  - integer
                  - 'null'
                  default: null
              required:
              - span
      responses:
        '200':
          description: OK (with results)
          content:
            application/json:
              schema:
                type: object
                properties:
                  deliveredInstances:
                    type: array
                    items:
                      type: number
                  inboxInstances:
                    type: array
                    items:
                      type: number
                  stalled:
                    type: array
                    items:
                      type: number
                  sub:
                    type: array
                    items:
                      type: number
                  pub:
                    type: array
                    items:
                      type: number
                  pubsub:
                    type: array
                    items:
                      type: number
                  subActive:
                    type: array
                    items:
                      type: number
                  pubActive:
                    type: array
                    items:
                      type: number
                required:
                - deliveredInstances
                - inboxInstances
                - stalled
                - sub
                - pub
                - pubsub
                - subActive
                - pubActive
        '400':
          description: Client error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                INVALID_PARAM:
                  value:
                    error:
                      message: Invalid param.
                      code: INVALID_PARAM
                      id: 3d81ceae-475f-4600-b2a8-2bc116157532
        '401':
          description: Authentication error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                CREDENTIAL_REQUIRED:
                  value:
                    error:
                      message: Credential required.
                      code: CREDENTIAL_REQUIRED
                      id: 1384574d-a912-4b81-8601-c7b1c4085df1
        '403':
          description: Forbidden error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                AUTHENTICATION_FAILED:
                  value:
                    error:
                      message: Authentication failed. Please ensure your token is correct.
                      code: AUTHENTICATION_FAILED
                      id: b0a7f5f8-dc2f-4171-b91f-de88ad238e14
        '418':
          description: I'm Ai
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
         

# --- truncated at 32 KB (126 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/misskey/refs/heads/main/openapi/misskey-charts-api-openapi.yml