# Trello API Common Issues

> Sub-skill of trello-api: Common Issues.

- Skill: `vamseeachanta/trello-api-common-issues` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vamseeachanta/trello-api-common-issues`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vamseeachanta/trello-api-common-issues/raw
- Safety review: PASS (external: skill-scanner WARNING, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: vamseeachanta (https://skillmd.com/u/vamseeachanta)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vamseeachanta/trello-api-common-issues

---


# Common Issues

## Common Issues


**Issue: 401 Unauthorized**
```bash
# Verify credentials
curl -s "https://api.trello.com/1/members/me?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"

# Regenerate token if needed:
# https://trello.com/1/authorize?expiration=never&scope=read,write&response_type=token&key=YOUR_API_KEY
```

**Issue: 429 Rate Limited**
```python
# Implement exponential backoff
import time

def retry_with_backoff(func, max_retries=5):
    for i in range(max_retries):
        try:
            return func()
        except Exception as e:
            if "429" in str(e):
                wait = 2 ** i
                print(f"Rate limited, waiting {wait}s")
                time.sleep(wait)
            else:
                raise
```

**Issue: Card not found**
```python
# Cards may be archived - search with filter
cards = board.get_cards(card_filter="all")  # Includes archived
```

**Issue: Webhook not receiving events**
```bash
# Check webhook status
curl -s "https://api.trello.com/1/tokens/$TRELLO_TOKEN/webhooks?key=$TRELLO_API_KEY" | jq

# Ensure callback URL is HTTPS and publicly accessible
```

