e-Stamp Catalog Discovery
● LiveDiscover which e-Stamp instruments/services are available to your organization.
GET
● Live/v1/servicesList entitled services (generic catalog, covers e-Stamp services too)
Returns every service (verification AND e-Stamp) this organization is entitled to, merged with Core's live catalog. There is no e-Stamp-specific catalog endpoint yet; e-Stamp instruments surface here as regular service entries once entitled.
Required scope: services.read
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| Authorization | header | Yes | Bearer <api-key> (e.g. sk_test_... in sandbox, sk_live_... in production). The x-api-key header is also accepted. |
Example response
{
"services": [
{
"serviceCode": "estamp.instrument.rent_agreement",
"name": "Rent Agreement e-Stamp",
"active": true
}
]
}GET
● Live/v1/services/:serviceCodeGet one entitled service's detail
Detail for a single serviceCode, if entitled and active in Core's catalog.
Required scope: services.read
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| Authorization | header | Yes | Bearer <api-key> (e.g. sk_test_... in sandbox, sk_live_... in production). The x-api-key header is also accepted. |
| serviceCode | path | Yes | Core's ServiceType key. |