Discover/Sovereigncrownhaalaahtrust API
live

Sovereigncrownhaalaahtrust APISOVEREIGNCROWNHAALAAHTRUST.ORG

Access grant opportunities, registered nonprofit entities, EINs, compliance status, and platform health from the Sovereign Crown Haalaah Trust via 3 endpoints.

This API takes change requests — .
Endpoint health
monitored
get_health
list_grants
list_entities
0/3 passing latest checkself-healing
Endpoints
3
Updated
29d ago

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.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/745e3efc-817b-43da-9cb6-5400e68fbfee/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/745e3efc-817b-43da-9cb6-5400e68fbfee/get_health' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

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")
All endpoints · 3 totalmissing one? ·

Returns the platform's current operational status, the registered organization name, and its EIN. A singleton status endpoint with no collection semantics.

Input

No input parameters required.

Response
{
  "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.

Reliability & maintenance

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.

Latest check
0/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Identify grant deadlines and funding amounts from list_grants to prioritize applications.
  • Filter grants by tags or cat fields to match opportunities to a specific program area.
  • Use AI-generated score values from list_grants to rank grant relevance for a particular organization.
  • Audit entity compliance by checking the status and due fields from list_entities.
  • Cross-reference ein values from list_entities with external IRS or state charity databases.
  • Monitor platform availability and confirm the registered EIN via get_health before running dependent workflows.
  • Build a dashboard of registered nonprofit entities and their associated tax forms using list_entities data.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 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.

Frequently asked questions
Does Sovereign Crown Haalaah Trust have an official developer API?+
No public developer API is documented on the SOVEREIGNCROWNHAALAAHTRUST.ORG website. This Parse API provides structured access to the platform's grant and entity data.
What does the `score` field in `list_grants` represent?+
The 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?+
Not currently. The 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?+
Not currently. The 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?+
Not currently. The 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.
Page content last updated . Spec covers 3 endpoints from SOVEREIGNCROWNHAALAAHTRUST.ORG.
Related APIs in Government PublicSee all →
api.nasa.gov API
Access NASA's suite of open data APIs — including the Astronomy Picture of the Day, Near Earth Object tracking, DONKI space weather events, EPIC Earth imagery, Mars weather, the NASA Image and Video Library, the Exoplanet Archive, and EONET natural events.
usaspending.gov API
Access data from usaspending.gov.
sec.gov API
Search for publicly traded companies and instantly access their SEC filings with details like filing type, date, description, and accession numbers. Find the regulatory documents you need to research company financial information and compliance records.
developer.company-information.service.gov.uk API
Search for UK registered companies and retrieve detailed information including company profiles, officer names, and their dates of birth. Access comprehensive corporate records directly from the official Companies House register to verify business details and identify key personnel.
companieshouse.gov.uk API
Search for UK companies and officers, then access detailed information including company profiles, filing history, charges, and officers with significant control. Get comprehensive corporate records and appointment details all in one place.
find-and-update.company-information.service.gov.uk API
Search and access detailed information about UK companies registered at Companies House, including company profiles, filing histories, officers, and financial charges. Filter companies by name, status, type, SIC code, and more.
capitol.texas.gov API
Search and monitor Texas Legislature bills, track their progress through legislative stages, and retrieve detailed action histories. Look up legislator contact information, district details, committee assignments, and full committee membership rosters.
mars.nasa.gov API
Explore real-time images, weather data, and location tracking from NASA's Perseverance and Curiosity rovers on Mars, while discovering mission details, rock sample findings, and the latest news from the Mars Exploration Program. Access rover photos, scientific discoveries, and multimedia content to stay updated on current Mars exploration activities.