Opply Activity Feed API

The Activity Feed API from Opply — 4 operation(s) for activity feed.

Operations 4

GET /api/v1/activity-feed/ List activity feed items #
GET /api/v1/activity-feed/{uuid}/ Fetch a single activity feed item by UUID #
POST /api/v1/activity-feed/mark-read/ Advance the current user's read cursor to now #
GET /api/v1/activity-feed/unread-count/ Unread item count for current user #

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-activity-feed-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-activity-feed-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Opply Activity Feed 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: Activity Feed
paths:
  /api/v1/activity-feed/:
    get:
      operationId: api_v1_activity_feed_list
      description: 'Company-scoped activity feed.


        Returns cursor-paginated feed items, newest first, for the authenticated

        user''s company. All employees see all activity — no role-based filtering.

        A single item is also retrievable by UUID (``/activity-feed/{uuid}/``) —

        used by the agent''s "Chat about this" read tool.


        Pagination is via the standard DRF cursor (``cursor`` query param).

        Filter params: ``source``, ``event_type``, ``order_uuid``.'
      summary: List activity feed items
      parameters:
      - name: cursor
        required: false
        in: query
        description: The pagination cursor value.
        schema:
          type: string
      tags:
      - Activity Feed
      security:
      - tokenAuth: []
      - cookieAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedFeedItemReadList'
          description: ''
  /api/v1/activity-feed/{uuid}/:
    get:
      operationId: api_v1_activity_feed_retrieve
      description: 'Company-scoped activity feed.


        Returns cursor-paginated feed items, newest first, for the authenticated

        user''s company. All employees see all activity — no role-based filtering.

        A single item is also retrievable by UUID (``/activity-feed/{uuid}/``) —

        used by the agent''s "Chat about this" read tool.


        Pagination is via the standard DRF cursor (``cursor`` query param).

        Filter params: ``source``, ``event_type``, ``order_uuid``.'
      summary: Fetch a single activity feed item by UUID
      parameters:
      - in: path
        name: uuid
        schema:
          type: string
        required: true
      tags:
      - Activity Feed
      security:
      - tokenAuth: []
      - cookieAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeedItemRead'
          description: ''
  /api/v1/activity-feed/mark-read/:
    post:
      operationId: api_v1_activity_feed_mark_read_create
      description: 'Company-scoped activity feed.


        Returns cursor-paginated feed items, newest first, for the authenticated

        user''s company. All employees see all activity — no role-based filtering.

        A single item is also retrievable by UUID (``/activity-feed/{uuid}/``) —

        used by the agent''s "Chat about this" read tool.


        Pagination is via the standard DRF cursor (``cursor`` query param).

        Filter params: ``source``, ``event_type``, ``order_uuid``.'
      summary: Advance the current user's read cursor to now
      tags:
      - Activity Feed
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FeedItemRead'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/FeedItemRead'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/FeedItemRead'
        required: true
      security:
      - tokenAuth: []
      - cookieAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeedItemRead'
          description: ''
  /api/v1/activity-feed/unread-count/:
    get:
      operationId: api_v1_activity_feed_unread_count_retrieve
      description: 'Company-scoped activity feed.


        Returns cursor-paginated feed items, newest first, for the authenticated

        user''s company. All employees see all activity — no role-based filtering.

        A single item is also retrievable by UUID (``/activity-feed/{uuid}/``) —

        used by the agent''s "Chat about this" read tool.


        Pagination is via the standard DRF cursor (``cursor`` query param).

        Filter params: ``source``, ``event_type``, ``order_uuid``.'
      summary: Unread item count for current user
      tags:
      - Activity Feed
      security:
      - tokenAuth: []
      - cookieAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeedItemRead'
          description: ''
components:
  schemas:
    FeedItemStatusEnum:
      enum:
      - queued
      - processing
      - integrating
      - processed
      type: string
      description: '* `queued` - Queued

        * `processing` - Processing

        * `integrating` - Integrating

        * `processed` - Processed'
    PaginatedFeedItemReadList:
      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/FeedItemRead'
    FeedItemRead:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
        source:
          type: string
        event_type:
          type: string
          readOnly: true
        order_uuid:
          type:
          - string
          - 'null'
          format: uuid
        order_number:
          type:
          - string
          - 'null'
        actor_email:
          type:
          - string
          - 'null'
          format: email
        actor_first_name:
          type:
          - string
          - 'null'
        actor_last_name:
          type:
          - string
          - 'null'
        summary:
          type: string
        body_text:
          type: string
        occurred_at:
          type: string
          format: date-time
        created:
          type: string
          format: date-time
        status:
          allOf:
          - $ref: '#/components/schemas/FeedItemStatusEnum'
          readOnly: true
      required:
      - actor_email
      - actor_first_name
      - actor_last_name
      - body_text
      - created
      - event_type
      - occurred_at
      - order_uuid
      - source
      - status
      - summary
      - uuid
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: cookie
      name: sessionid
    tokenAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Token-based authentication with required prefix "Token"