GET · /v1/projects/42/sync200 OK
# Petición
GET /v1/projects/42/sync
Authorization: Bearer prj_live_a7c2...
# Respuesta — attribute block (200 OK)
{
"type": "attribute",
"id": "combat.weapons.rifle",
"fields": {
"damage": { "type": "int", "value": 24 },
"fireRate": { "type": "float", "value": 7.5 },
"ammo": { "type": "enum", "value": "energy" }
},
"version": "2.3.0"
}
REST API
Native integration with your engine. Live documentation over HTTP.
Turn your documentation into your project's backend. Through a hyper-fast read-only API, any engine or script — Unity, Unreal, Godot or your own software — consumes the structured data as production-ready JSON.
Technical specs & security
- Independent, revocable tokens. Generate unique per-project access keys from the dashboard. If a token is compromised or an external party leaves the team, revoke it instantly and generate a new one with a single click.
- Isolation and scope control. Each token has read-only permissions and you can limit its access to specific systems or departments: your code only consumes what it needs.
- Read-only architecture. As an exclusively read API, it is technically impossible for a code error or external breach to alter, delete or corrupt your documents.
- Optimised payload. Special blocks — balance tables, attributes, dialogue — are returned as clean, standardised JSON, easy to parse by your import scripts.
View API documentation
Technical reference: JSON payload examples, endpoints by system and integration guides for your tool pipeline.