Magic Moment Performance API

The performance API from Magic Moment — 9 operation(s) for performance.

Operations 9

GET /reports/achievement/unit #
GET /reports/achievement/user #
GET /reports/engagement-ids #
GET /reports/performance-detail/phase/{phaseValue} #
GET /reports/performance-detail/rep/{engagementOwnerId} #
GET /reports/performance-detail/team #
GET /reports/performance-summary/phase #
GET /reports/performance-summary/rep #
GET /reports/performance-summary/team #

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/magic-moment-performance-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

magic-moment-performance-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 集計基盤連携API仕様
  title: 集計基盤連携アプリケーション Performance API
  version: 1.0.0
servers:
- url: https://report.magicmoment.co.jp/
tags:
- name: performance
paths:
  /reports/achievement/unit:
    get:
      security:
      - accessToken: []
      tags:
      - performance
      operationId: getUnitAchievement
      parameters:
      - $ref: '#/components/parameters/requiredStartDateInQuery'
      - $ref: '#/components/parameters/requiredEndDateInQuery'
      - $ref: '#/components/parameters/requiredTargetTypeInQuery'
      - $ref: '#/components/parameters/unitIdInQuery'
      - $ref: '#/components/parameters/requiredPhaseValueInQuery'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnitAchievement'
  /reports/achievement/user:
    get:
      security:
      - accessToken: []
      tags:
      - performance
      operationId: getUserAchievement
      parameters:
      - $ref: '#/components/parameters/requiredStartDateInQuery'
      - $ref: '#/components/parameters/requiredEndDateInQuery'
      - $ref: '#/components/parameters/requiredTargetTypeInQuery'
      - $ref: '#/components/parameters/unitIdInQuery'
      - $ref: '#/components/parameters/requiredPhaseValueInQuery'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserAchievement'
  /reports/engagement-ids:
    get:
      security:
      - accessToken: []
      tags:
      - performance
      operationId: getEngagementIdsOfPerformanceSummary
      parameters:
      - name: engagementOwnerId
        in: query
        schema:
          type: string
          format: uuid
      - name: phaseValue
        in: query
        schema:
          type: string
          enum:
          - nurturing
          - qualification
          - closing
          - onboarding
          - adoption
          - expansion
      - name: unitIds[]
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
            format: uuid
      - $ref: '#/components/parameters/requiredItemTypeInQuery'
      - $ref: '#/components/parameters/followedPhaseType'
      - $ref: '#/components/parameters/requiredStartDateInQuery'
      - $ref: '#/components/parameters/requiredEndDateInQuery'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UUID'
  /reports/performance-detail/phase/{phaseValue}:
    get:
      security:
      - accessToken: []
      tags:
      - performance
      operationId: getPhasePerformanceDetail
      parameters:
      - $ref: '#/components/parameters/requiredPhaseValueInPath'
      - $ref: '#/components/parameters/requiredStartDateInQuery'
      - $ref: '#/components/parameters/requiredEndDateInQuery'
      - $ref: '#/components/parameters/requiredGroupByInQuery'
      - $ref: '#/components/parameters/requiredItemTypeInQuery'
      - $ref: '#/components/parameters/followedPhaseType'
      - $ref: '#/components/parameters/requiredUnitIdsInQuery'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PhasePerformanceDetail'
  /reports/performance-detail/rep/{engagementOwnerId}:
    get:
      security:
      - accessToken: []
      tags:
      - performance
      operationId: getRepPerformanceDetail
      parameters:
      - $ref: '#/components/parameters/requiredEngagementOwnerIdInPath'
      - $ref: '#/components/parameters/requiredStartDateInQuery'
      - $ref: '#/components/parameters/requiredEndDateInQuery'
      - $ref: '#/components/parameters/requiredGroupByInQuery'
      - $ref: '#/components/parameters/requiredItemTypeInQuery'
      - $ref: '#/components/parameters/followedPhaseType'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RepPerformanceDetail'
  /reports/performance-detail/team:
    get:
      security:
      - accessToken: []
      tags:
      - performance
      operationId: getTeamPerformanceDetail
      parameters:
      - $ref: '#/components/parameters/requiredStartDateInQuery'
      - $ref: '#/components/parameters/requiredEndDateInQuery'
      - $ref: '#/components/parameters/requiredGroupByInQuery'
      - $ref: '#/components/parameters/requiredItemTypeInQuery'
      - $ref: '#/components/parameters/followedPhaseType'
      - $ref: '#/components/parameters/requiredUnitIdsInQuery'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamPerformanceDetail'
  /reports/performance-summary/phase:
    get:
      security:
      - accessToken: []
      tags:
      - performance
      operationId: getPhasePerformanceSummary
      parameters:
      - $ref: '#/components/parameters/requiredStartDateInQuery'
      - $ref: '#/components/parameters/requiredEndDateInQuery'
      - $ref: '#/components/parameters/requiredFollowedPhaseType'
      - $ref: '#/components/parameters/requiredUnitIdsInQuery'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PhasePerformanceSummary'
  /reports/performance-summary/rep:
    get:
      security:
      - accessToken: []
      tags:
      - performance
      operationId: getRepPerformanceSummary
      parameters:
      - $ref: '#/components/parameters/requiredStartDateInQuery'
      - $ref: '#/components/parameters/requiredEndDateInQuery'
      - $ref: '#/components/parameters/requiredFollowedPhaseType'
      - $ref: '#/components/parameters/requiredUnitIdsInQuery'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RepPerformanceSummary'
  /reports/performance-summary/team:
    get:
      security:
      - accessToken: []
      tags:
      - performance
      operationId: getTeamPerformanceSummary
      parameters:
      - $ref: '#/components/parameters/requiredStartDateInQuery'
      - $ref: '#/components/parameters/requiredEndDateInQuery'
      - $ref: '#/components/parameters/requiredFollowedPhaseType'
      - $ref: '#/components/parameters/requiredUnitIdsInQuery'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamPerformanceSummary'
components:
  parameters:
    requiredEndDateInQuery:
      description: 検索範囲(終了)
      name: endDate
      in: query
      required: true
      schema:
        type: string
        format: date
    requiredPhaseValueInQuery:
      name: phaseValue
      in: query
      required: true
      schema:
        type: string
        enum:
        - nurturing
        - qualification
        - closing
        - onboarding
        - adoption
        - expansion
    followedPhaseType:
      name: followedPhaseType
      in: query
      schema:
        type: string
        enum:
        - toLatest
        - sameTerm
        - inTerm
        - newAssign
    requiredEngagementOwnerIdInPath:
      name: engagementOwnerId
      in: path
      required: true
      schema:
        type: string
        format: uuid
    unitIdInQuery:
      name: unitId
      in: query
      schema:
        type: string
        format: uuid
    requiredFollowedPhaseType:
      name: followedPhaseType
      in: query
      required: true
      schema:
        type: string
        enum:
        - toLatest
        - sameTerm
        - inTerm
        - newAssign
    requiredTargetTypeInQuery:
      name: targetType
      in: query
      required: true
      schema:
        type: string
        enum:
        - achievedPhase
        - requiredItem
        - optionalItem
        - winned
        - mrr
        - contractValue
    requiredItemTypeInQuery:
      name: itemType
      in: query
      required: true
      schema:
        type: string
        enum:
        - achievedPhase
        - leadTime
        - requiredItem
        - optionalItem
        - tossedup
        - tossedupRate
        - winned
        - winRate
        - averagePrice
        - acv
        - onboarding
        - averageOnboardingDate
        - vacv
        - cumulativeAssignEngagement
        - newAssignEngagement
        - attackEngagement
    requiredPhaseValueInPath:
      name: phaseValue
      in: path
      required: true
      schema:
        type: string
        enum:
        - nurturing
        - qualification
        - closing
        - onboarding
        - adoption
        - expansion
    requiredGroupByInQuery:
      description: グループ化条件
      name: groupBy
      in: query
      required: true
      schema:
        type: string
        enum:
        - daily
        - monthly
    requiredStartDateInQuery:
      description: 検索範囲(開始)
      name: startDate
      in: query
      required: true
      schema:
        type: string
        format: date
    requiredUnitIdsInQuery:
      name: unitIds[]
      in: query
      required: true
      style: form
      explode: true
      schema:
        type: array
        items:
          type: string
          format: uuid
  schemas:
    RepPerformanceSummary:
      type: array
      items:
        type: object
        properties:
          engagementOwner:
            $ref: '#/components/schemas/EngagementOwner'
          values:
            $ref: '#/components/schemas/PerformanceSummaryValue'
    PhaseValue:
      type: string
      enum:
      - nurturing
      - qualification
      - closing
      - onboarding
      - adoption
      - expansion
    PhasePerformanceDetail:
      type: object
      properties:
        phaseValue:
          $ref: '#/components/schemas/PhaseValue'
        values:
          $ref: '#/components/schemas/PerformanceDetailValue'
    UUID:
      type: string
      format: uuid
      example: 550e8400-e29b-41d4-a716-446655440000
    PerformanceSummaryValue:
      type: object
      required:
      - achievedPhase
      - leadTime
      - requiredItem
      - optionalItem
      properties:
        achievedPhase:
          type: integer
          format: uint32
        acv:
          type: integer
          format: uint64
        attackEngagement:
          type: integer
          format: uint32
        averageOnboardingDate:
          type: integer
          format: uint32
        averagePrice:
          type: integer
          format: uint32
        cumulativeAssignEngagement:
          type: integer
          format: uint32
        leadTime:
          type: integer
          format: uint32
        newAssignEngagement:
          type: integer
          format: uint32
        onboarding:
          type: integer
          format: uint32
        optionalItem:
          type: integer
          format: uint32
        requiredItem:
          type: integer
          format: uint32
        tossedup:
          type: integer
          format: uint32
        tossedupRate:
          type: number
          format: float
        vacv:
          type: integer
          format: uint64
        winRate:
          type: number
          format: float
        winned:
          type: integer
          format: uint32
      x-examples: {}
    TeamPerformanceDetail:
      type: object
      properties:
        values:
          $ref: '#/components/schemas/PerformanceDetailValue'
    RepPerformanceDetail:
      type: object
      properties:
        engagementOwner:
          $ref: '#/components/schemas/EngagementOwner'
        values:
          $ref: '#/components/schemas/PerformanceDetailValue'
    PhasePerformanceSummary:
      type: array
      items:
        type: object
        properties:
          phaseValue:
            $ref: '#/components/schemas/PhaseValue'
          values:
            $ref: '#/components/schemas/PerformanceSummaryValue'
      x-examples: {}
    UnitAchievement:
      type: object
      properties:
        values:
          $ref: '#/components/schemas/PerformanceDetailValue'
    UserAchievement:
      type: object
      properties:
        values:
          $ref: '#/components/schemas/PerformanceDetailValue'
    TeamPerformanceSummary:
      type: object
      properties:
        values:
          $ref: '#/components/schemas/PerformanceSummaryValue'
    EngagementOwner:
      type: object
      properties:
        id:
          $ref: '#/components/schemas/UUID'
        phaseValue:
          $ref: '#/components/schemas/PhaseValue'
        unitId:
          $ref: '#/components/schemas/UUID'
        userId:
          $ref: '#/components/schemas/UUID'
    PerformanceDetailValue:
      type: array
      items:
        type: object
        required:
        - value
        properties:
          date:
            type: string
            format: date
          value:
            type: number
            format: float
  securitySchemes:
    accessToken:
      type: apiKey
      name: x-access-token
      in: header
    apiKey:
      type: apiKey
      name: x-api-key
      in: header