Middesk · Example Payload

Middesk Screen Signal Example

Business VerificationKYBKnow Your BusinessIdentity VerificationComplianceEIN ValidationTIN VerificationSanctions ScreeningBusiness MonitoringFintechRegTech

Middesk Screen Signal Example is an example object payload from Middesk, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

namesummaryrequestresponse

Example Payload

Raw ↑
{
  "name": "screen-signal",
  "summary": "Screen a business using risk signals",
  "request": {
    "method": "POST",
    "url": "https://api.middesk.com/v1/signals",
    "headers": {
      "Authorization": "Bearer YOUR_API_KEY",
      "Content-Type": "application/json"
    },
    "body": {
      "name": "Acme Corporation",
      "tin": "12-3456789",
      "addresses": [
        {
          "address_line1": "123 Main St",
          "city": "San Francisco",
          "state": "CA",
          "postal_code": "94105"
        }
      ]
    }
  },
  "response": {
    "status": 200,
    "body": {
      "id": "sig_ghi012",
      "object": "signal",
      "status": "approved",
      "reasons": [],
      "created_at": "2026-06-13T00:00:00Z"
    }
  }
}