Skip to main content

Documentation Index

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

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

Concept: Applications
Returns the features available to your API key’s plan: evaluation modes, compliance frameworks, agent and DPDP capabilities, and request limits. Use it to discover the surface area you can build against without hard-coding plan assumptions.

Request

curl https://api.responsibleailabs.ai/railscore/v1/capabilities \
  -H "Authorization: Bearer YOUR_RAIL_API_KEY"

Response

{
  "plan": "pro",
  "evaluation": { "modes": ["basic", "deep"] },
  "compliance": {
    "frameworks": ["GDPR", "CCPA", "HIPAA", "EU AI Act", "India DPDP", "India AI Governance"],
    "continuous_monitoring": false
  },
  "agent": { "tool_call": true, "tool_result": true, "prompt_injection": true },
  "dpdp": { "scan": true, "evaluate": true, "evidence": true },
  "limits": { "requests_per_day": 1000, "max_concurrent": 20, "max_active_keys": 5 }
}
evaluation.modes
string[]
Evaluation depths available: basic and deep.
compliance
object
frameworks lists the compliance frameworks you can evaluate against. continuous_monitoring indicates whether ongoing monitoring pipelines are available on your plan.
agent
object
Agent governance features: pre-call tool_call checks, post-call tool_result scanning, and standalone prompt_injection detection.
dpdp
object
India DPDP features available on your plan, including whether audit-grade evidence packets can be generated.
limits
object
Request limits for the key: requests_per_day (null means unlimited), max_concurrent, and max_active_keys.