clari-install-auth

Featured

Configure Clari API authentication with API key and set up export access. Use when connecting to the Clari API, generating API tokens, or configuring forecast data exports. Trigger with phrases like "install clari", "setup clari api", "clari auth", "clari api key", "configure clari".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Clari Install & Auth ## Overview Set up Clari API access for exporting forecast data, pipeline snapshots, and revenue intelligence to your data warehouse. Clari uses API key authentication via the `apikey` header, with the primary API at `api.clari.com/v4/`. ## Prerequisites - Clari enterprise account with API access enabled - Admin or RevOps role for API key generation - Target data warehouse (Snowflake, BigQuery, or Redshift) for exports ## Instructions ### Step 1: Generate API Token 1. Log in to Clari at https://app.clari.com 2. Navigate to **User Settings** > **API Token** 3. Click **Generate New API Token** 4. Copy and store the token securely ```bash # Store securely -- never commit export CLARI_API_KEY="your-api-token-here" # Verify the key works curl -s -H "apikey: ${CLARI_API_KEY}" \ https://api.clari.com/v4/export/forecast/list \ | jq '.forecasts | length' ``` ### Step 2: Configure Environment ```bash # .env -- NEVER commit this file CLARI_API_KEY=your-api-token CLARI_BASE_URL=https://api.clari.com/v4 CLARI_ORG_ID=your-org-id # .gitignore .env .env.local ``` ### Step 3: Test API Connectivity ```python import requests import os api_key = os.environ["CLARI_API_KEY"] headers = {"apikey": api_key, "Content-Type": "application/json"} # List available forecasts response = requests.get( "https://api.clari.com/v4/export/forecast/list", headers=headers, ) response.raise_for_status() forecasts = response.json()["forecasts"] for fc in forecasts: ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

clari-hello-world

Export your first Clari forecast and pipeline snapshot. Use when testing Clari API connectivity, pulling forecast data, or learning the export API structure. Trigger with phrases like "clari hello world", "clari first export", "clari test api", "clari forecast export".

2,266 Updated today
jeremylongshore
AI & Automation Solid

clari-security-basics

Secure Clari API tokens and implement data handling best practices. Use when managing API tokens, restricting data access, or implementing PII handling for exported forecast data. Trigger with phrases like "clari security", "clari api key rotation", "secure clari", "clari pii handling".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clari-core-workflow-a

Build a Clari forecast export pipeline to your data warehouse. Use when exporting forecast calls, quota data, and CRM totals from Clari to Snowflake, BigQuery, or a local database. Trigger with phrases like "clari forecast export", "clari data pipeline", "clari to snowflake", "clari to bigquery", "export clari data".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clari-common-errors

Diagnose and fix Clari API errors including auth failures, export issues, and data mismatches. Use when Clari API calls fail, exports return empty data, or forecast numbers do not match the UI. Trigger with phrases like "clari error", "clari not working", "clari api failure", "fix clari", "debug clari".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clari-prod-checklist

Production readiness checklist for Clari API integrations. Use when launching a Clari data pipeline, validating export automation, or preparing for production forecast sync. Trigger with phrases like "clari production", "clari go-live", "clari checklist", "clari launch".

2,266 Updated today
jeremylongshore