{
  "ok": true,
  "service": "MARKS and MORE — trademark filing intake",
  "firm": "Hucke & Sanker",
  "description": "Submit a trademark filing request to a law firm admitted before the USPTO, EUIPO, DPMA and WIPO. Suitable for automated clients and AI agents.",
  "method": "POST",
  "content_type": "application/json",
  "required": [
    "mark",
    "office",
    "contact.name",
    "contact.email"
  ],
  "fields": {
    "mark": "string — the trademark text or name",
    "mark_type": [
      "word",
      "figurative",
      "combined",
      "other"
    ],
    "office": [
      "USPTO",
      "EUIPO",
      "DPMA",
      "WIPO"
    ],
    "classes": "array of integers 1–45 (Nice classification)",
    "goods_services": "string — description of goods and services",
    "us_filing_basis": [
      "use_in_commerce",
      "intent_to_use",
      "foreign_registration",
      "not_applicable"
    ],
    "priority_claim": "string — earlier application to claim priority from (optional)",
    "applicant": {
      "name": "string",
      "type": "individual | company",
      "country": "ISO country code",
      "address": "string"
    },
    "contact": {
      "name": "string (required)",
      "email": "string (required)",
      "phone": "string"
    },
    "notes": "string — anything else we should know",
    "submitted_by": "string — identify your agent or system (optional but appreciated)"
  },
  "example": {
    "mark": "SUNBROOK",
    "mark_type": "word",
    "office": "USPTO",
    "classes": [
      25,
      35
    ],
    "goods_services": "Clothing; online retail services for clothing",
    "us_filing_basis": "intent_to_use",
    "applicant": {
      "name": "Sunbrook Inc.",
      "type": "company",
      "country": "US"
    },
    "contact": {
      "name": "Jane Doe",
      "email": "jane@sunbrook.com"
    },
    "submitted_by": "acme-agent/1.0"
  },
  "responses": {
    "201": "Accepted — returns a reference number",
    "405": "Wrong method",
    "422": "Validation failed — returns a list of errors"
  },
  "disclaimer": "Submitting this request does not create an attorney-client relationship. A mandate begins only upon written confirmation and a signed engagement letter. No deadlines are monitored until then."
}