Ironclad Clickwrap Groups API

Manage clickwrap groups (containers of contracts).

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/ironclad-clickwrap-groups-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

ironclad-clickwrap-groups-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Ironclad Clickwrap Activity Groups API
  description: The Ironclad Clickwrap API (formerly PactSafe) lets developers programmatically manage clickwrap and click-through agreements, track user acceptance, and generate audit-ready records of consent for terms, privacy policies, and other legal contracts.
  version: '1.1'
  contact:
    name: Ironclad Clickwrap Support
    url: https://ironcladapp.com/support/
  license:
    name: Proprietary
    url: https://ironcladapp.com/
servers:
- url: https://pactsafe.io
  description: Ironclad Clickwrap API production base URL
security:
- bearerAuth: []
tags:
- name: Groups
  description: Manage clickwrap groups (containers of contracts).
paths:
  /groups:
    get:
      tags:
      - Groups
      summary: List clickwrap groups
      operationId: listGroups
      parameters:
      - name: sid
        in: query
        schema:
          type: integer
        description: Site ID filter.
      responses:
        '200':
          description: List of groups.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Group'
  /groups/{groupId}:
    get:
      tags:
      - Groups
      summary: Get a clickwrap group
      operationId: getGroup
      parameters:
      - $ref: '#/components/parameters/GroupId'
      responses:
        '200':
          description: A group.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Group'
components:
  parameters:
    GroupId:
      name: groupId
      in: path
      required: true
      schema:
        type: integer
  schemas:
    Group:
      type: object
      properties:
        id:
          type: integer
        key:
          type: string
        name:
          type: string
        site_id:
          type: integer
        contracts:
          type: array
          items:
            type: integer
        created:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key