Get all graphs
const url = 'https://example.com/graph/v1';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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://example.com/graph/v1 \ --header 'Authorization: Bearer <token>'Get all graphs
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”All graphs returned.
object
Records an association between a subject and another entity
This statement type is used to create relationships between artifacts, such as linking data to its metadata, or connecting related entities.
object
JSON-LD context URL
Unique identifier for this statement
Statement type identifier
The associated entities (CID or DID)
DID of the entity that registered this statement
The subject of the association (CID or DID)
ISO 8601 timestamp of when the statement was created
Records the storage of data on a specific system
This statement type captures where data is stored and who operated the storage system, creating an audit trail for data location.
object
JSON-LD context URL
Unique identifier for this statement
Statement type identifier
CID of the data being stored
DID of the entity operating the storage system
DID of the entity that registered this statement
CID of the storage system description
ISO 8601 timestamp of when the statement was created
Records metadata associated with a subject
This statement type links metadata (descriptive information, properties, attributes) to artifacts or entities in the lineage system.
object
JSON-LD context URL
Unique identifier for this statement
Statement type identifier
CID of the metadata JSON document
DID of the entity that registered this statement
The subject the metadata describes (CID or DID)
ISO 8601 timestamp of when the statement was created
Records a computational process with its inputs and outputs
This statement type captures the lineage of data transformations, including the computation performed, input data, output data, and the entity that executed the computation.
object
JSON-LD context URL
Unique identifier for this statement
Statement type identifier
Optional CID of the computation definition or code
Optional identifier of the system where computation was executed
Input data CIDs (single value or array)
DID of the entity that operated the computation
Output data CIDs (single value or array)
DID of the entity that registered this statement
ISO 8601 timestamp of when the statement was created
Records a W3C Verifiable Credential
This statement type stores verifiable credentials in W3C VC format, providing cryptographically verifiable claims about subjects.
object
JSON-LD context URL
Unique identifier for this statement
Statement type identifier
The W3C Verifiable Credential
DID of the entity that registered this statement
ISO 8601 timestamp of when the statement was created
Records a credential in DSSE (Dead Simple Signing Envelope) format
This statement type stores verifiable credentials that have been signed using the DSSE specification, providing cryptographic proof of authenticity.
object
JSON-LD context URL
Unique identifier for this statement
Statement type identifier
Serializable DSSE envelope for lineage data.
Contains a payload and one or more signatures for secure transmission and storage of lineage statements.
object
The base64-encoded payload data
The type/format of the payload
One or more digital signatures
Serializable signature within a DSSE envelope.
Links a key identifier to its signature bytes for verification.
object
Key identifier used to create the signature
The base64-encoded signature bytes
DID of the entity that registered this statement
ISO 8601 timestamp of when the statement was created
Records a Sigstore bundle as a credential
This statement type stores Sigstore bundles which contain signatures and attestations from the Sigstore transparency log, providing verifiable proof of software artifact authenticity.
object
JSON-LD context URL
Unique identifier for this statement
Statement type identifier
DID of the entity that registered this statement
Base64-encoded Sigstore bundle
The subject that the bundle is about
ISO 8601 timestamp of when the statement was created
Regular DID registration statement without verified computing attestation
This statement type registers a decentralized identifier (DID) without any additional attestation or verification information.
object
JSON-LD context URL
Unique identifier for this statement
Statement type identifier
The DID being registered
DID of the entity that registered this statement
ISO 8601 timestamp of when the statement was created
Records the registration of data artifacts
This statement type is used to register one or more data artifacts in the lineage system, establishing their existence and provenance.
object
JSON-LD context URL
Unique identifier for this statement
Statement type identifier
Data artifact CID(s) being registered
DID of the entity that registered this statement
ISO 8601 timestamp of when the statement was created
Records the registration of entities in the lineage system
This statement type registers entities (organizations, systems, or agents) that participate in lineage events, identified by UUIDs.
object
JSON-LD context URL
Unique identifier for this statement
Statement type identifier
Entity UUID(s) being registered
DID of the entity that registered this statement
ISO 8601 timestamp of when the statement was created
Records governance information for a subject
This statement type associates governance documents (policies, procedures, compliance documents) with subjects in the lineage system.
object
JSON-LD context URL
Unique identifier for this statement
Statement type identifier
CID of the governance document
DID of the entity that registered this statement
The subject to which governance applies
ISO 8601 timestamp of when the statement was created
Example
{ "created_at": "2026-05-26T12:00:00Z", "statements": [ { "type": "certifies" } ], "updated_at": "2026-05-26T12:00:00Z"}Server error