Clipform

Get public form metadata

Returns lightweight form metadata (title, description, node count, thumbnail, theme). Public endpoint - no authentication required. Used by the embed SDK's onReady callback.

GET
/forms/meta/{shareId}

Path Parameters

shareId
Required
string

Form share ID (9-character hex string)

Pattern: "^[a-f0-9]{8,12}$"
curl -X GET "https://api.clipform.io/v1/forms/meta/string"

Form metadata

{
  "title": "string",
  "description": "string",
  "node_count": 0,
  "thumbnail_url": "string",
  "theme": {
    "primary_color": "string",
    "background_color": "string"
  }
}