Endpoint for fetching information about the authenticated workspace. It can be used to test if the API authentication works.
Embeddable Builder API (0.1.0)
Download OpenAPI description
Overview
URL
E-mail
Languages
Servers
Production
https://api.builder.docue.com/
- Productionhttps://api.builder.docue.com/api/templates
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.builder.docue.com/api/templates?per_page=20&page=1&include=languages%2Cjurisdictions' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <YOUR_API Key_HERE>'Response
application/json
{ "data": [ { … } ], "meta": { "current_page": 1, "first_page_url": "https://api.builder.docue.com/api/templates?page=1", "from": 1, "last_page": 2, "last_page_url": "https://api.builder.docue.com/api/templates?page=2", "next_page_url": "https://api.builder.docue.com/api/templates?page=2", "path": "https://api.builder.docue.com/api/templates", "per_page": 15, "prev_page_url": null, "to": 15, "total": 30 } }
- Productionhttps://api.builder.docue.com/api/templates/{template_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.builder.docue.com/api/templates/7f3f5f62-2c69-7d4e-8a3d-9c0f0e2c5f3a?include=languages%2Cjurisdictions' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <YOUR_API Key_HERE>'Response
application/json
{ "data": { "id": "7f3f5f62-2c69-7d4e-8a3d-9c0f0e2c5f3a", "title": { … }, "description": { … }, "short_description": { … }, "default_document_name": { … }, "created_at": "2025-03-22T14:30:00Z", "updated_at": "2025-03-22T14:30:00Z", "languages": [ … ], "jurisdictions": [ … ] } }