get_document
Retrieve the full content of Swiss legal documents in JSON, HTML, or PDF format using a document signature. Simplifies access to court decisions for analysis or reference.
Instructions
Retrieve the full content of a specific legal document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Document format to retrieve | json |
signature | Yes | Document signature (e.g., CH_BGer_005_5F-23-2025_2025-07-01) | |
spider | No | Court/spider name (e.g., CH_BGer). If not provided, will be extracted from signature |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"default": "json",
"description": "Document format to retrieve",
"enum": [
"json",
"html",
"pdf"
],
"type": "string"
},
"signature": {
"description": "Document signature (e.g., CH_BGer_005_5F-23-2025_2025-07-01)",
"type": "string"
},
"spider": {
"description": "Court/spider name (e.g., CH_BGer). If not provided, will be extracted from signature",
"type": "string"
}
},
"required": [
"signature"
],
"type": "object"
}