Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

bloomerang-apibloomerang API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

240

周安装

10

GitHub Stars

公开资料未说明

下载量

80
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bloomerang-api(bloomerang API 搜索)
来源仓库:https://github.com/asebesta/claude-skills
仓库路径:skills/bloomerang-api
安装命令:
npx skills add asebesta/claude-skills --skill "bloomerang-api"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add asebesta/claude-skills --skill "bloomerang-api"

简介

辅助 API 设计、接口文档编写与前后端联调支持。

  • 适合梳理 endpoint、生成 OpenAPI 草稿、检查字段命名规范。
  • 通过 npx skills add asebesta/claude-skills --skill "bloomerang-api" 安装使用。
  • 涉及敏感业务逻辑时需人工复核接口定义的真实性与安全性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
bloomerang-api
description
Bloomerang CRM API integration reference for building donor management features. Use when writing code that interacts with the Bloomerang API, including fetchers, normalizers, or any backend integration with Bloomerang donor data. Covers Constituents, Transactions, Pledges, Campaigns, Appeals, Interactions, Tasks, and Relationships.

Bloomerang API

Reference for integrating with the Bloomerang CRM REST API (OpenAPI 3.0, v2.0.0).

Base URL

https://api.bloomerang.co/v2

Authentication

API Key (recommended for integrations):

X-API-KEY: <your-api-key>

OAuth 2.0 (for user-based interactions):

  • Authorization URL: https://crm.bloomerang.com/authorize/
  • Token URL: https://api.bloomerang.co/v2/oauth/token
  • Scopes: ViewOnly, StandardEditFinancialData, Standard, OrgAdmin

Pagination

All list endpoints use skip and take parameters:

  • take: Max 50 items per request (default)
  • skip: Offset for pagination
  • Response includes Total, TotalFiltered, Start, ResultCount

Key Endpoints

Constituents (Donors)

GET    /constituents                    # List constituents
GET    /constituent/{id}                # Get single constituent
POST   /constituent                     # Create constituent
PUT    /constituent/{id}                # Update constituent
DELETE /constituent/{id}                # Delete constituent
GET    /constituents/search             # Search constituents
GET    /constituent/{id}/timeline       # Get constituent timeline
GET    /constituent/{id}/relationships  # Get relationships
POST   /constituent/merge               # Merge duplicates

Households

GET    /households                      # List households
GET    /household/{id}                  # Get household
POST   /household                       # Create household
PUT    /household/{id}                  # Update household

Transactions (Gifts)

GET    /transactions                    # List transactions
GET    /transaction/{id}                # Get single transaction
POST   /transaction                     # Create transaction
PUT    /transaction/{id}                # Update transaction
DELETE /transaction/{id}                # Delete transaction
GET    /transactions/designations       # Get designations

Pledges

GET    /pledge/{id}/installments        # Get pledge installments
GET    /pledge/{id}/payments            # Get pledge payments
POST   /pledge/generateInstallments     # Generate installments
POST   /pledge/{id}/writeOff            # Write off pledge

Interactions

GET    /interactions                    # List interactions
GET    /interaction/{id}                # Get interaction
POST   /interaction                     # Create interaction
PUT    /interaction/{id}                # Update interaction
DELETE /interaction/{id}                # Delete interaction

Campaigns & Appeals

GET    /campaigns                       # List campaigns
GET    /campaign/{id}                   # Get campaign
POST   /campaign                        # Create campaign
GET    /appeals                         # List appeals
GET    /appeal/{id}                     # Get appeal
POST   /appeal                          # Create appeal

Tasks

GET    /tasks                           # List tasks
GET    /task/{id}                       # Get task
POST   /task                            # Create task
PUT    /task/{id}                       # Update task
POST   /task/{id}/complete              # Complete task

Other Resources

GET    /funds                           # List funds
GET    /notes                           # List notes
GET    /refunds                         # List refunds
GET    /softcredits                     # List soft credits
GET    /tributes                        # List tributes
GET    /walletitems                     # List wallet items
GET    /relationshiproles               # List relationship roles

ID vs AccountNumber

Bloomerang distinguishes between:

  • ID: API identifier (use in API calls)
  • AccountNumber: UI-friendly reference (displayed to users)

Full API Reference

For complete endpoint specifications, request/response schemas, and examples, search the OpenAPI spec (do not read the full file - it's 1.5MB):

references/bloomerang-openapi.json

Search patterns (use grep or jq):

  • Endpoints: jq '.paths | keys'
  • Schemas: jq '.components.schemas | keys'
  • Specific endpoint: jq '.paths["/constituent/{id}"]'

Disclaimer

This skill is not affiliated with, endorsed by, or sponsored by Bloomerang. It references publicly available API documentation for educational and integration purposes. The information may be outdated or incomplete. Always refer to the official Bloomerang documentation for the most current API specifications.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

29.27%
按下载量换算23

Claude Code

24.93%
按下载量换算20

replit

18.15%
按下载量换算15

OpenCode

13.72%
按下载量换算11

Cursor

8.9%
按下载量换算7

github-copilot

3.4%
按下载量换算3

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills