{
  "openapi": "3.0.1",
  "info": {
    "title": "🎯 Analyst Price Targets — Consensus, Upgrades, Downgrades",
    "description": "Track sell-side analyst price targets, consensus ratings, recent upgrades/downgrades across US-listed stocks. Bloomberg-style ratings distribution with upside/downside vs current price. Pay-per-result for portfolio managers, retail smart-money followers, IR teams tracking street sentiment.",
    "version": "0.0",
    "x-build-id": "TvKnoT3JzLF0q1neA"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/nexgendata~analyst-price-targets/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-nexgendata-analyst-price-targets",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/nexgendata~analyst-price-targets/runs": {
      "post": {
        "operationId": "runs-sync-nexgendata-analyst-price-targets",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/nexgendata~analyst-price-targets/run-sync": {
      "post": {
        "operationId": "run-sync-nexgendata-analyst-price-targets",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "symbols"
        ],
        "properties": {
          "symbols": {
            "title": "Stock symbols (tickers)",
            "type": "array",
            "description": "Array of US-listed stock tickers to fetch analyst price-target data for. Examples: ['AAPL', 'NVDA', 'TSLA', 'MSFT']. Tickers are case-insensitive — they are upper-cased before lookup. Supports common stock symbols on NYSE, NASDAQ, and major US exchanges. Each symbol returns one record with consensus target, high/low, ratings distribution, and recent analyst actions.",
            "default": [
              "AAPL",
              "NVDA",
              "TSLA",
              "MSFT",
              "AMZN"
            ],
            "items": {
              "type": "string"
            }
          },
          "limit": {
            "title": "Maximum number of records to return",
            "minimum": 0,
            "maximum": 2000,
            "type": "integer",
            "description": "Maximum number of analyst price-target records to return after all filters apply. Set to 0 to return every input symbol that passes the filters. Useful for testing on small batches before running a full universe scan (S&P 500, Russell 1000, custom watchlist).",
            "default": 0
          },
          "min_upside_pct": {
            "title": "Minimum upside percentage filter",
            "minimum": -1000,
            "maximum": 1000,
            "type": "number",
            "description": "Filter out names whose consensus target implies less than this percentage of upside vs current price. Use 20 for high-conviction longs, 50 for deep-value/distressed setups, or a negative number (e.g. -100) to include downside names too. Set to -1000 (default) to disable the filter and return everything. Computed as ((target - current) / current) * 100.",
            "default": -1000
          },
          "consensus_rating": {
            "title": "Consensus rating filter",
            "enum": [
              "all",
              "Strong Buy",
              "Buy",
              "Hold",
              "Sell",
              "Strong Sell"
            ],
            "type": "string",
            "description": "Filter records by sell-side consensus rating bucket. 'all' returns everything. Use 'Strong Buy' or 'Buy' to surface street-favorite names, 'Sell' or 'Strong Sell' to surface short candidates and value-trap warnings. The rating is derived from Yahoo Finance's recommendationKey field (1.0–5.0 mean scale).",
            "default": "all"
          },
          "include_recent_actions": {
            "title": "Include recent analyst actions (last 90 days)",
            "type": "boolean",
            "description": "If true, populates the 'recent_actions' field with up to 20 individual sell-side actions from the last 90 days: firm name, rating change, target change, action type (Upgrade/Downgrade/Maintain/Initiate), and date. Disable for lighter payloads if you only need the consensus snapshot.",
            "default": true
          },
          "min_n_analysts": {
            "title": "Minimum number of contributing analysts",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Drop records where fewer than this many analysts contribute to the consensus target. Use 5 to filter out thinly-covered micro-caps where one outlier dominates the mean. Use 15 to filter to widely-covered names with statistically meaningful consensus. Set to 0 (default) to disable the filter.",
            "default": 0
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}