Optimyzee App Recommendation API

App Recommendation

Operations 2

GET /app/recommendations List the current user's stored recommendations #
PATCH /app/recommendations/{recommendationId} Update a recommendation status #

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/optimyzee-app-recommendation-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

optimyzee-app-recommendation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Optimyzee Application App Recommendation API
  version: 4.1.0
  x-original-title: API
  description: App Recommendation
servers:
- url: https://api.optimyzee.com
  description: Production (host serving this document at /docs)
tags:
- name: App Recommendation
  description: App Recommendation
paths:
  /app/recommendations:
    get:
      tags:
      - App Recommendation
      summary: List the current user's stored recommendations
      operationId: a0beb9202425004a1461d531cc8378af
      parameters:
      - name: businessId
        in: query
        required: false
        schema:
          type: string
      - name: domain
        in: query
        required: false
        schema:
          type: string
      - name: status
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AppRecommendationSchema'
  /app/recommendations/{recommendationId}:
    patch:
      tags:
      - App Recommendation
      summary: Update a recommendation status
      operationId: 02b67b9bb321e6ea93f11dd324815378
      parameters:
      - name: recommendationId
        in: path
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required:
              - status
              properties:
                status:
                  type: string
              type: object
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppRecommendationSchema'
components:
  schemas:
    AppRecommendationSchema:
      required:
      - id
      - businessId
      - businessName
      - domain
      - title
      - rationale
      - direction
      - deltaPct
      - service
      - confidence
      - status
      - source
      - createdAt
      - acceptedAt
      - dismissedAt
      - outcomeCheckedAt
      - outcomeWindowDays
      - outcomeMetrics
      - yelpAdsJobId
      - yelpAdsJobStatus
      - yelpAdsJobProgramRef
      - yelpAdsJobMessage
      properties:
        id:
          type: integer
        businessId:
          type:
          - string
          - 'null'
        businessName:
          type:
          - string
          - 'null'
        domain:
          type: string
        title:
          type: string
        rationale:
          type: string
        direction:
          type: string
        deltaPct:
          type:
          - integer
          - 'null'
        service:
          type:
          - string
          - 'null'
        confidence:
          type: string
        status:
          type: string
        source:
          type: string
        createdAt:
          type:
          - string
          - 'null'
        acceptedAt:
          type:
          - string
          - 'null'
        dismissedAt:
          type:
          - string
          - 'null'
        outcomeCheckedAt:
          type:
          - string
          - 'null'
        outcomeWindowDays:
          type:
          - integer
          - 'null'
        outcomeMetrics:
          type:
          - object
          - 'null'
        yelpAdsJobId:
          type:
          - integer
          - 'null'
        yelpAdsJobStatus:
          type:
          - string
          - 'null'
        yelpAdsJobProgramRef:
          type:
          - string
          - 'null'
        yelpAdsJobMessage:
          type:
          - string
          - 'null'
      type: object
  securitySchemes:
    token:
      type: apiKey
      description: Bearer token authorization
      name: authorization
      in: header