datadog-api

Retrieve live Datadog dashboards, monitors, and timeseries via authenticated API requests.

3|1|Updated Apr 12, 2026
One-click install
npx skills add https://github.com/Cogni-AI-OU/cogni-ai-agent-skills --skill datadog-api
Or copy as Structured Prompt for Agentā–¼
Please help me install this Agent Skill.
Skill: datadog-api
Source: https://github.com/Cogni-AI-OU/cogni-ai-agent-skills/tree/main/datadog-api
Command: npx skills add https://github.com/Cogni-AI-OU/cogni-ai-agent-skills --skill datadog-api

SYSTEM DOCUMENTATION & REQUIREMENTS

šŸ’” This Skill includes references (resource) components.

What problem does it solve?

This Skill helps you reliably query the Datadog API from the command line to retrieve live dashboards, monitors, and time series data without relying on a UI or heavyweight tooling.

Core Features & Use Cases

  • Datadog API querying via cURL: Pull dashboards, monitor details, and operational status using authenticated HTTP requests.
  • Metrics and timeseries retrieval: Query time-bounded metric data using from/to timestamps to avoid overwhelming outputs.
  • Safe response handling: Use tools like jq to prune and extract only the fields you need to keep agent context manageable.

Use Case: You want to audit production monitor behavior for a specific environment tag by searching monitors, then fetching selected monitor definitions for reporting or backup.

Quick Start

Use the datadog-api skill to fetch a dashboard JSON by its ID using your Datadog API and application keys.

Frequently Asked Questions about datadog-api

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I query Datadog metrics from the command line?ā–¼

Datadog monitor statuses are retrieved by sending authenticated API requests to search and fetch monitor definitions, allowing you to audit operational behavior for specific environment tags during troubleshooting.

How do I pull a Datadog dashboard JSON by its ID?ā–¼

To pull a Datadog dashboard JSON by its ID, use a cURL command with authenticated API-key headers to directly request the dashboard endpoint and retrieve the raw configuration data without relying on the UI.

Do I need jq to query the Datadog API?ā–¼

Before querying the Datadog API, you need valid Datadog API and application keys for header authentication, the correct Datadog site endpoint, and tools like cURL and jq installed in your command-line environment.

What is the best way to avoid overwhelming outputs when fetching Datadog timeseries data?ā–¼

This approach is ideal for command-line automation, operational audits, and troubleshooting where retrieving live dashboards, monitor details, and time-bounded timeseries data without heavyweight UI tooling is required.