List Theses
GET
/theses
const url = 'http://127.0.0.1:8000/theses';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 http://127.0.0.1:8000/thesesResponses
Section titled “Responses”Successful Response
Media typeapplication/json
Response List Theses Theses Get
Array<object>
ThesisSnapshotobject
claims
required
Claims
Array<object>
ThesisClaimobject
claim_id
required
Claim Id
string
evidence_refs
Evidence Refs
Array<string>
falsifiers
Falsifiers
Array<string>
rationale
required
Rationale
string
statement
required
Statement
string
company
required
Company
string
thesis_id
required
Thesis Id
string
version
required
Version
integer
Examplegenerated
[ { "claims": [ { "claim_id": "example", "evidence_refs": [ "example" ], "falsifiers": [ "example" ], "rationale": "example", "statement": "example" } ], "company": "example", "thesis_id": "example", "version": 1 }]