Sovereigncrownhaalaahtrust APISOVEREIGNCROWNHAALAAHTRUST.ORG ↗
Discover grant opportunities and browse registered nonprofit entities within the Sovereign Crown Haalaah Trust platform, while monitoring real-time system status. Access comprehensive information about available grants and participating organizations to support your funding research and partnership decisions.
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
The Sovereigncrownhaalaahtrust API on Parse exposes 3 endpoints for the publicly available data on SOVEREIGNCROWNHAALAAHTRUST.ORG. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.