TECHNICAL DOCUMENTATION
Developer
Reference
Docs
SDK, REST API, scenario catalog, and integration guides for the BotManifold verification platform.
847+
scenarios
S0–S5
safety_grades
REST
+ python_sdk
❯
pip install botmanifold
✓ installed botmanifold==2.1.0
❯
python3
>>>
import botmanifold as bm
>>>
client = bm.Client(api_key="bm_...")
>>>
result = client.verify(
policy="franka_pick_v2.zip",
scenario="navigation-v1",
episodes=100
)
>>>
result.grade
'S3'
>>>
result.score
94.2
>>>
result.verdict
'CERTIFIED'
>>>
❯
botmanifold docs --list
# 6 sections available — pick one to explore
SECTION
DESCRIPTION
ACTION
Getting Started
quickstart
Submit your first policy in under five minutes.
→
Scenarios
scenarios.list
847+ pre-built MuJoCo test environments. Browse and filter.
→
Python SDK
sdk.reference
Full Python client API — install, authenticate, verify, poll results.
→
REST API
api.endpoints
Direct HTTP access — endpoints, auth, request and response schemas.
→
Guides
guides.list
Writing policies, debugging tips, and advanced integration patterns.
→
FAQ
faq
Common questions about submissions, grading, and billing.
→