Parameters

No parameters.
GET/v1/forms
curl https://api.tradly.app/v1/forms \
  -H "Authorization: Bearer YOUR_PUBLISHABLE_OR_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
RESPONSE
{
  "status": true,
  "data": {
    "total_records": 1,
    "page": 1,
    "per_page": 10,
    "forms": [
      {
        "id": 1,
        "title": "Customer Feedback Form",
        "description": "Feedback form for customers",
        "status": "active",
        "slug": "customer-feedback",
        "metadata": null,
        "created_at": 1723068000,
        "updated_at": 1723068000
      }
    ]
  }
}