Skip to main content
GET
/
contracts
/
{id}
/
clauses
Get contract clauses
curl --request GET \
  --url https://api.tomorro.com/v2/contracts/{id}/clauses \
  --header 'x-api-key: <api-key>'
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "contractId": "550e8400-e29b-41d4-a716-446655440000",
    "isCustom": false,
    "clause": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Confidentiality"
    }
  }
]

Documentation Index

Fetch the complete documentation index at: https://alpha.developer.tomorro.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API key for authentication. Get your key at https://app.tomorro.com/settings/integrations?integration=api-key

Path Parameters

id
string
required

The unique identifier (UUID) of the contract

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

List of clauses attached to the contract

id
string
required

Unique identifier for the contract-clause association.

Example:

"550e8400-e29b-41d4-a716-446655440000"

contractId
string
required

The contract this clause is attached to.

Example:

"550e8400-e29b-41d4-a716-446655440000"

isCustom
boolean
required

Whether this clause was customized for this specific contract.

Example:

false

clause
object
required

The clause details.

Example:
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Confidentiality"
}