Sovereigncrownhaalaahtrust APISOVEREIGNCROWNHAALAAHTRUST.ORG ↗
Access grant opportunities, registered nonprofit entities, EINs, compliance status, and platform health from the Sovereign Crown Haalaah Trust via 3 endpoints.
What is the Sovereigncrownhaalaahtrust API?
The Sovereign Crown Haalaah Trust API exposes 3 endpoints covering grant funding data, registered entity records, and platform health. The list_grants endpoint returns each grant's funder, funding amount, deadline, category tags, and an AI-generated relevance score. The list_entities endpoint surfaces registered organizations with EINs, tax form types, filing due dates, and compliance status — making it useful for nonprofit research, compliance monitoring, and funding discovery.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/745e3efc-817b-43da-9cb6-5400e68fbfee/get_health' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace sovereigncrownhaalaahtrust-org-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: Sovereign Crown Platform SDK — bounded, re-runnable."""
from parse_apis.sovereigncrownhaalaahtrust_org_api import SovereignCrown, ParseError
client = SovereignCrown()
# Check platform health status
platform = client.platforms.check()
print(f"Platform: {platform.org} (EIN {platform.ein}) — status: {platform.status}")
# List all grant opportunities with their AI scores
for grant in client.grants.list(limit=5):
print(f" {grant.name} — {grant.amount} from {grant.funder} (score: {grant.score})")
# List registered entities and their compliance status
try:
for entity in client.entities.list(limit=5):
print(f" {entity.name} [{entity.type}] EIN {entity.ein} — {entity.status}")
except ParseError as e:
print(f"Error listing entities: {e}")
print("exercised: platforms.check / grants.list / entities.list")
Returns the platform's current operational status, the registered organization name, and its EIN. A singleton status endpoint with no collection semantics.
No input parameters required.
{
"type": "object",
"fields": {
"ein": "string",
"org": "string",
"status": "string"
},
"sample": {
"data": {
"ein": "42-2442772",
"org": "The Tolomakasi Haalaah Institute for Abundance Inc.",
"status": "running"
},
"status": "success"
}
}About the Sovereigncrownhaalaahtrust API
Platform Health and Organization Identity
The get_health endpoint returns a singleton response with three fields: status (current operational state of the platform), org (the registered organization name), and ein (the organization's Employer Identification Number). It takes no inputs and serves as a lightweight availability check or identity confirmation for the platform.
Grant Opportunities
The list_grants endpoint returns a total count alongside an array of grant objects. Each grant object includes name (grant title), funder (the funding organization), amount (funding value), deadline, tags (category labels), cat (primary category), and score — an AI-generated relevance score ranging from 0 to 100. No filter parameters are currently supported; the endpoint returns the full grant set in a single response.
Registered Entities
The list_entities endpoint returns a total count and an array of entity records under the Sovereign Crown umbrella. Each entity object includes name, ein, type (entity classification), form (applicable tax form, such as 990 or 990-EZ), due (filing due date), and status (compliance standing). This makes it straightforward to audit which entities are current on filings versus overdue.
Coverage Scope
All three endpoints return complete datasets without pagination or filtering inputs. The API is purpose-built for the Sovereign Crown Haalaah Trust platform specifically, so coverage is scoped to entities and grants tracked within that platform rather than the broader nonprofit sector.
The Sovereigncrownhaalaahtrust API is a managed, monitored endpoint for SOVEREIGNCROWNHAALAAHTRUST.ORG — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when SOVEREIGNCROWNHAALAAHTRUST.ORG changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official SOVEREIGNCROWNHAALAAHTRUST.ORG API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Identify grant deadlines and funding amounts from
list_grantsto prioritize applications. - Filter grants by
tagsorcatfields to match opportunities to a specific program area. - Use AI-generated
scorevalues fromlist_grantsto rank grant relevance for a particular organization. - Audit entity compliance by checking the
statusandduefields fromlist_entities. - Cross-reference
einvalues fromlist_entitieswith external IRS or state charity databases. - Monitor platform availability and confirm the registered EIN via
get_healthbefore running dependent workflows. - Build a dashboard of registered nonprofit entities and their associated tax forms using
list_entitiesdata.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 req/min |
Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Sovereign Crown Haalaah Trust have an official developer API?+
What does the `score` field in `list_grants` represent?+
score field is an AI-generated relevance score between 0 and 100 attached to each grant object. It is returned alongside the grant's name, funder, amount, deadline, tags, and cat fields. The scoring methodology is determined by the platform; the API returns the value as-is.Can I filter grants by funder, category, or deadline through the API?+
list_grants endpoint takes no input parameters and returns the full grant set in one response. You can fork this API on Parse and revise it to add filtering logic over the returned funder, cat, tags, or deadline fields.Does the API cover nonprofit entities outside the Sovereign Crown umbrella?+
list_entities endpoint is scoped to organizations registered within the Sovereign Crown Haalaah Trust platform. It does not pull from IRS databases or broader nonprofit registries. You can fork this API on Parse and revise it to add an endpoint that queries external sources like the IRS Tax Exempt Organization Search.Are historical grant records or past compliance filings available?+
list_grants endpoint reflects current grant opportunities, and list_entities returns current compliance status and upcoming filing due dates. There is no historical archive endpoint. You can fork this API on Parse and revise it to add a historical records endpoint if the underlying platform exposes that data.