Opply Insights API

The Insights API from Opply — 2 operation(s) for insights.

Operations 2

GET /api/v1/insights/ List insights for the current buyer #
POST /api/v1/insights/debug/seed/ #

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/opply-insights-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

opply-insights-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Opply Activity Feed Insights API
  version: 0.0.0
servers:
- url: https://api.opply.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Insights
paths:
  /api/v1/insights/:
    get:
      operationId: api_v1_insights_list
      description: 'Buyer-scoped insights feed.


        Returns cursor-paginated insights, newest first. The queryset surfaces both

        insights bound to the authenticated user''s company AND cross-portfolio

        insights with ``company IS NULL`` (e.g. industry trends, investor signals).

        ``retrieve`` (by ``uuid``) backs the insights-recommender''s ``get_insight`` MCP

        tool; it stays scoped by the same ``get_queryset``.


        Filter params: ``insight_type``, ``source``, ``sector``.'
      summary: List insights for the current buyer
      parameters:
      - name: cursor
        required: false
        in: query
        description: The pagination cursor value.
        schema:
          type: string
      - in: query
        name: insight_type
        schema:
          type: string
        description: Filter by insight_type — free-text on the column, but the typical values are `pricing`, `peer`, `npd`, `reorder`, `investor`.
      - in: query
        name: sector
        schema:
          type: string
        description: Filter by brain sector — mirrors ``FeedItemEventType`` values (`suppliers`, `ingredients`, `operations`, `compliance`, `commercial`, `financials`, `market`).
      - in: query
        name: source
        schema:
          type: string
        description: Filter by producer identifier (e.g. `opply.enrichment`, `opply.news`).
      tags:
      - Insights
      security:
      - tokenAuth: []
      - cookieAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedInsightReadList'
          description: ''
  /api/v1/insights/debug/seed/:
    post:
      operationId: api_v1_insights_debug_seed_create
      description: '``POST /api/v1/insights/debug/seed/`` — staff-only.


        Body ``{company_uuid?}``. Idempotently seeds the sample insight(s) for that

        buyer (defaulting to the caller''s own company) and returns their uuids.

        Targeting a company other than your own requires staff access.'
      tags:
      - Insights
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/_SeedInsightsRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/_SeedInsightsRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/_SeedInsightsRequest'
      security:
      - tokenAuth: []
      - cookieAuth: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SeedSampleInsightsResponse'
          description: ''
components:
  schemas:
    InsightRead:
      type: object
      description: 'Read view of an Insight for the buyer-facing rail.


        `insight_type` is the model column verbatim where it matches one of the

        known `InsightType` values; otherwise it falls through to

        `InsightType.INVESTOR` so the FE never has to deal with stale or

        experimental category strings. ``sector`` is a proper enum at the DB

        level, so it''s returned verbatim — values outside ``InsightSector``

        fall through to ``undefined`` (the brain UI filters those out).'
      properties:
        uuid:
          type: string
          format: uuid
          readOnly: true
        source:
          type: string
          description: Producer identifier, e.g. opply.enrichment, hubspot
          maxLength: 128
        kicker:
          type: string
          description: Short uppercase label rendered above the insight headline (e.g. 'Pricing trend', 'Peer-network signal'). Optional — defaults to empty string when not set.
          maxLength: 128
        title:
          type: string
          description: Short headline for the insight
          maxLength: 512
        description:
          type: string
          description: Longer body text describing the insight
        insight_type:
          type: string
          readOnly: true
        sector:
          type: string
          readOnly: true
        meta:
          type: string
          description: Optional subtitle rendered next to the kicker on the InsightCard (e.g. 'Diageo · Littleconnell Brewery · €300M'). Defaults to empty string when not set.
          maxLength: 255
        tags:
          type: array
          items:
            type: string
            maxLength: 128
          description: Free-text labels attached to the insight (e.g. category, severity, topic)
        occurred_at:
          type: string
          format: date-time
          description: When the insight was generated by its producer
        created:
          type: string
          format: date-time
          readOnly: true
        payload:
          description: 'Free-form structured data emitted by the producer (e.g. quantified $ impact as {"impact_amount": "12345.67", "impact_currency": "GBP"}). Defaults to an empty object. Shape is producer-owned; no schema migration needed to add keys.'
        news_id:
          type: string
          description: External identifier for the news article (when sourced from a news producer).
          maxLength: 128
        url:
          type: string
          format: uri
          description: Canonical URL for the underlying news article, if any.
          maxLength: 2048
        body_excerpt:
          type: string
          description: Verbatim excerpt from the source article. `description` is the producer's summary written for the buyer; `body_excerpt` is the original text for reference.
        published_at:
          type:
          - string
          - 'null'
          format: date-time
          description: When the underlying news article was published. Distinct from `occurred_at`, which is when the producer emitted the insight.
      required:
      - created
      - description
      - insight_type
      - occurred_at
      - sector
      - source
      - title
      - uuid
    PaginatedInsightReadList:
      type: object
      required:
      - results
      properties:
        next:
          type:
          - string
          - 'null'
          format: uri
          example: http://api.example.org/accounts/?cursor=cD00ODY%3D"
        previous:
          type:
          - string
          - 'null'
          format: uri
          example: http://api.example.org/accounts/?cursor=cj0xJnA9NDg3
        results:
          type: array
          items:
            $ref: '#/components/schemas/InsightRead'
    SeedSampleInsightsResponse:
      type: object
      properties:
        insight_uuids:
          type: array
          items:
            type: string
            format: uuid
      required:
      - insight_uuids
    _SeedInsightsRequest:
      type: object
      properties:
        company_uuid:
          type: string
          format: uuid
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: cookie
      name: sessionid
    tokenAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Token-based authentication with required prefix "Token"