Newsroom Monitoring

Newsroom Monitoring is a Naftiko capability published by The New York Times Company, one of 3 capabilities the APIs.io network indexes for this provider.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Run with Naftiko

Capability Spec

newsroom-monitoring.yaml Raw ↑
apiVersion: naftiko.io/v1
kind: CapabilityWorkflow
metadata:
  name: newsroom-monitoring
  provider: new-york-times-company
  tags:
    - News
    - Monitoring
    - Workflow
    - Real Time
spec:
  summary: |
    End-to-end workflow for monitoring The New York Times newsroom in near
    real time: pull the live firehose, surface what is trending, and stitch
    in semantic context.
  steps:
    - id: pull-firehose
      capability: nyt-timeswire
      with:
        source: all
        section: all
        timePeriodHours: 1
    - id: snapshot-top-stories
      capability: nyt-top-stories
      with:
        section: home
    - id: rank-most-popular
      capability: nyt-most-popular
      with:
        metric: viewed
        period: 1
    - id: enrich-with-tags
      capability: nyt-times-tags
      forEach: pull-firehose.results[*].des_facet
      with:
        query: "{{ item }}"
        max: 5
  outputs:
    - latestArticles
    - trendingArticles
    - topStories
    - tagSuggestions