CitationSystem — HTML
GET
/id/system/{key}/
const url = 'https://textrefs.org/id/system/example/';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://textrefs.org/id/system/example/Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”key
required
string
Flat registry key.
Responses
Section titled “Responses”CitationSystem landing page.
Media typetext/html
string
No registry object found at this identifier.
Media typeapplication/json
object
message
required
string
code
string
Examplegenerated
{ "message": "example", "code": "example"}