{
  "x402Version": 2,
  "id": 5295,
  "slug": "5295",
  "resource": "https://x402stock.xyz/api/v1/form-144",
  "description": "Market-wide recent Form 144 insider intent-to-sell notices across all US issuers — who is filing to sell, before the Form 4 confirms it. Per notice: ticker, issuer, insider, shares to be sold, aggregate market value, and approximate sale date. Tune the window with `?days=` (max 90) or `?startdt`/`?enddt`, and `?limit=` (max 50). Proposed sales, not executed. From SEC EDGAR. From x402stock",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x3070Fbb3803819fB5BdfE9286fdc6325A877fA85",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "20000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "method": "GET",
          "queryParams": {
            "days": 7,
            "limit": 20
          },
          "type": "http"
        },
        "output": {
          "example": {
            "as_of": "2026-06-05T00:00:00.000Z",
            "count": 2,
            "end_date": "2026-06-05",
            "notices": [
              {
                "accession": "0002090999-26-000007",
                "aggregate_market_value": 1730007.11,
                "approx_sale_date": "2026-06-05",
                "filing_date": "2026-06-05",
                "insider_name": "SINGHAL ANIL K",
                "issuer": "NETSCOUT SYSTEMS INC",
                "issuer_cik": "0001078075",
                "relationships": [
                  "Director"
                ],
                "security": "Common",
                "shares_to_be_sold": 42013,
                "ticker": "NTCT",
                "url": "https://www.sec.gov/Archives/edgar/data/1078075/000209099926000007/primary_doc.xml"
              },
              {
                "accession": "0001976408-26-000552",
                "aggregate_market_value": 902500,
                "approx_sale_date": "2026-06-05",
                "filing_date": "2026-06-05",
                "insider_name": "Dotan Saar",
                "issuer": "ZIM Integrated Shipping Services Ltd.",
                "issuer_cik": "0001654126",
                "relationships": [
                  "Officer"
                ],
                "security": "Ordinary Shares",
                "shares_to_be_sold": 50000,
                "ticker": "ZIM",
                "url": "https://www.sec.gov/Archives/edgar/data/1654126/000197640826000552/primary_doc.xml"
              }
            ],
            "source": "sec_edgar",
            "start_date": "2026-05-29",
            "total_matches": 1121
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET",
                  "HEAD",
                  "DELETE"
                ],
                "type": "string"
              },
              "queryParams": {
                "$schema": "https://json-schema.org/draft/2020-12/schema",
                "additionalProperties": false,
                "properties": {
                  "days": {
                    "default": 14,
                    "exclusiveMinimum": 0,
                    "maximum": 90,
                    "type": "integer"
                  },
                  "enddt": {
                    "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
                    "type": "string"
                  },
                  "limit": {
                    "default": 20,
                    "exclusiveMinimum": 0,
                    "maximum": 50,
                    "type": "integer"
                  },
                  "startdt": {
                    "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
                    "type": "string"
                  }
                },
                "required": [
                  "days",
                  "limit"
                ],
                "type": "object"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "$schema": "https://json-schema.org/draft/2020-12/schema",
                "additionalProperties": false,
                "properties": {
                  "as_of": {
                    "type": "string"
                  },
                  "count": {
                    "type": "number"
                  },
                  "end_date": {
                    "type": "string"
                  },
                  "notices": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "accession": {
                          "type": "string"
                        },
                        "aggregate_market_value": {
                          "anyOf": [
                            {
                              "type": "number"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "approx_sale_date": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "filing_date": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "insider_name": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "issuer": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "issuer_cik": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "relationships": {
                          "items": {
                            "type": "string"
                          },
                          "type": "array"
                        },
                        "security": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "shares_to_be_sold": {
                          "anyOf": [
                            {
                              "type": "number"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "ticker": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "url": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        }
                      },
                      "required": [
                        "ticker",
                        "issuer",
                        "issuer_cik",
                        "insider_name",
                        "relationships",
                        "security",
                        "shares_to_be_sold",
                        "aggregate_market_value",
                        "approx_sale_date",
                        "filing_date",
                        "accession",
                        "url"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "source": {
                    "const": "sec_edgar",
                    "type": "string"
                  },
                  "start_date": {
                    "type": "string"
                  },
                  "total_matches": {
                    "type": "number"
                  }
                },
                "required": [
                  "source",
                  "as_of",
                  "start_date",
                  "end_date",
                  "total_matches",
                  "count",
                  "notices"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "x402stock.xyz",
  "lastUpdated": "2026-09-14T19:04:22.694Z",
  "quality": {
    "calls30d": 1,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-14T19:04:22.427Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "x402stock.xyz",
    "manifest_name": "x402stock.xyz",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}