Download OpenAPI specification:Download
Experimental transparency log endpoints for the #trstd
Returns log entries within the specified index range.
| start required | integer >= 0 Start index (inclusive) |
| end required | integer >= 0 End index (exclusive) |
{- "entries": [
- {
- "timestamp": "2019-08-24T14:15:22Z",
- "responseId": "ed662de2-39c1-4e7d-a6bf-6980511adfaf",
- "entityId": "string",
- "responseHash": "string",
- "hashAlgorithm": "sha-256"
}
]
}Returns an inclusion proof for the log entry identified by its canonical response hash.
| responseHash required | string Hash of the canonical (JCS) response body (hex-encoded) |
| hashAlgorithm | string or null Default: "sha-256" Hash algorithm used (IANA Hash Function Textual Names registry). Defaults to sha-256. |
| treeSize required | integer >= 1 Tree size to compute the proof against |
{- "leafIndex": 0,
- "treeSize": 0,
- "hashes": [
- "string"
], - "hashAlgorithm": "sha-256"
}Returns the log entry for a specific verify response, including the responseHash.
| responseId required | string <uuid> Example: f47ac10b-58cc-4372-a567-0e02b2c3d479 UUID of the verify response to look up |
{- "responseId": "ed662de2-39c1-4e7d-a6bf-6980511adfaf",
- "responseHash": "a3f2b8c1d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0",
- "hashAlgorithm": "sha-256",
- "timestamp": "2019-08-24T14:15:22Z"
}Returns the full response body (excluding the signature field) as stored at issuance time. Requires authentication.
| responseId required | string <uuid> Example: f47ac10b-58cc-4372-a567-0e02b2c3d479 UUID of the verify response to look up |
{- "responseId": "ed662de2-39c1-4e7d-a6bf-6980511adfaf",
- "responseHash": "string",
- "hashAlgorithm": "sha-256",
- "responseData": { },
- "timestamp": "2019-08-24T14:15:22Z"
}