Skip to main content
POST
/
api
/
v1
/
legal-status
/
verify-claim
Verify a Kenya data protection legal claim
curl --request POST \
  --url https://reg-api.esheria.co.ke/api/v1/legal-status/verify-claim \
  --header 'Content-Type: application/json' \
  --header 'idempotency-key: <idempotency-key>' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "claim": "A data controller must respond to a data subject access request within seven days.",
  "domain": "data_protection",
  "jurisdiction": "KE",
  "limit": 3
}
'
{
  "status": "error",
  "errors": [
    {
      "code": "unauthorized",
      "message": "Invalid API key"
    }
  ],
  "trace_id": "trace-123"
}

Documentation Index

Fetch the complete documentation index at: https://docs.esheria.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
default:YOUR_ESHERIA_API_KEY
required

Client API key issued by Esheria.

Headers

idempotency-key
string
required

Unique key for mutating request replay protection.

Body

application/json
claim
string
required
Required string length: 5 - 2000
jurisdiction
string
default:KE
Required string length: 2 - 8
domain
string
default:data_protection
Required string length: 2 - 80
pack_id
string | null
Required string length: 2 - 120
publication_mode
enum<string> | null
Available options:
published,
citation_verified,
draft,
semantic_draft
claimed_instrument_version
string | null
Maximum string length: 80
limit
integer
default:3
Required range: 1 <= x <= 10

Response

Successful Response