Searches for and retrieves fundraising records from the Carta CRM. Use this skill when the user says things like "find a fundraising", "search fundraisings", "look up a fundraising round", "show fundraising details for [company]", "get fundraising by ID", "list fundraisings", "what fundraisings do we have", or "/search-fundraisings". Returns fundraising details including ID, name, amount, stage, and associated company. The fundraising ID returned can be used with the update-fundraising skill.
Search for fundraisings in the Carta CRM using GET /v1/fundraisings (filtered list) or
GET /v1/fundraisings/{id} (single record by ID). Return results in a readable summary
and always include the fundraising ID so the user can reference it for updates.
Based on the user's request, choose one of two modes:
64f1a2b3c4d5e6f7a8b9c0d1) → use GET /v1/fundraisings/{id}GET /v1/fundraisings with query paramsIf it's unclear, default to By search / filter and ask the user for a search term.
By ID:
curl -s "https://api.listalpha.com/v1/fundraisings/<id>" \
-H "Authorization: ${LISTALPHA_API_KEY}"
By search / filter:
curl -s "https://api.listalpha.com/v1/fundraisings?search=<term>&limit=20" \
-H "Authorization: ${LISTALPHA_API_KEY}"
Available query parameters:
| Param | Type | Description |
|---|---|---|
search | string | Company name or keyword |
limit | integer | Max results (default to 20 unless user specifies) |
offset | integer | Skip N results for pagination |
Omit any params the user did not specify.
For each fundraising returned, display all non-empty fields in a readable summary, including the ID prominently. The exact field shape depends on the tenant's custom field configuration — display whatever the API returns.
If no fundraisings are found:
"No fundraisings found matching your search. Try a different company name or keyword."
If multiple results are returned, list them all and note the total count.
Always surface the fundraising ID prominently — the user will need it to run /update-fundraising.
See references/api-reference.md for full endpoint details.