API
A read-only JSON API over your Salesforce metadata dictionary and schema change feed.
The SchemaForce Read API gives you programmatic, read-only access to your data dictionary and schema change feed. It returns JSON describing your Salesforce metadata — objects, fields, and relationships — and the history of how that schema has changed.
Metadata only
The API never returns record or customer data. Every response describes the shape of your org — objects, fields, relationships, and the schema attributes that changed over time.
Requires a Business plan
The Read API is a Business feature and requires a Business plan. Requests authenticated with a key on a Free or Pro account return 403. See Plans & billing.
Base URL
https://api.schemaforce.com/v1
Authentication
Every request is authenticated with a bearer token:
Authorization: Bearer sk_live_…
See Authentication for how to create and use keys.
Responses
All successful responses are JSON, wrapped in a data envelope:
{ "data": ... }