Claude-code-plugins podium-cost-tuning

install
source · Clone the upstream repo
git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/jeremylongshore/claude-code-plugins-plus-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/saas-packs/podium-pack/skills/podium-cost-tuning" ~/.claude/skills/jeremylongshore-claude-code-plugins-podium-cost-tuning && rm -rf "$T"
manifest: plugins/saas-packs/podium-pack/skills/podium-cost-tuning/SKILL.md
source content

Podium Cost Tuning

Overview

Implementation patterns for Podium cost tuning using the REST API with OAuth2 authentication.

Prerequisites

  • Completed
    podium-install-auth
    setup
  • Valid OAuth2 access token

Instructions

Step 1: API Call Pattern

import axios from 'axios';

const podium = axios.create({
  baseURL: 'https://api.podium.com/v4',
  headers: { 'Authorization': `Bearer ${process.env.PODIUM_ACCESS_TOKEN}` },
});

const { data } = await podium.get('/locations');
console.log(`Locations: ${data.data.length}`);

Output

  • Podium API integration for cost tuning
  • OAuth2 authenticated requests
  • Error handling and retry logic

Error Handling

ErrorCauseSolution
401 UnauthorizedExpired tokenRefresh OAuth token
429 Rate LimitedToo many requestsImplement backoff
403 ForbiddenMissing scopeUpdate OAuth app scopes

Resources

Next Steps

See related Podium skills for more workflows.