Receiving Signals

20 March 2025

    GEThttps://signals.gse.live/feed /all

    All Reported Signals

    All signals made available to you from reported threat feeds on the GSE

    Attributes

    • Name
      reportDateFrom
      Type
      datetime
      Description
      Restrict the signals by report date
    • Name
      reportDateTo
      Type
      datetime
      Description
      Restrict the signals by report date
    • Name
      importDateFrom
      Type
      datetime
      Description
      Restrict the signals by import date
    • Name
      importDateTo
      Type
      datetime
      Description
      Restrict the signals by import date
    • Name
      limit
      Type
      integer
      Description
      Limit the number of results to the supplied number Defaults to 50. Max 10000
    • Name
      offset
      Type
      integer
      Description
      Offset the results by the supplied number Defaults to 0

    Request

    GET /all
    
    curl -G https://signals.gse.live/feed/all \
      -H "API-KEY: 4tqaTgMkBAUzAgUI" \
      -H "API-SECRET: z0xgqjREXCMmnlYI" \
      -d reportDateFrom=[[value]] \
      -d reportDateTo=[[value]] \
      -d importDateFrom=[[value]] \
      -d importDateTo=[[value]] \
      -d limit=[[value]] \
      -d offset=[[value]] \

    response

    [
      {
        "signal": "https://somesignal.com",
        "source": "Phishing Provider",
        "signal_type": "url",
        "abuse_type": "phishing",
        "report_date": "2020-01-23 14:24:06",
        "import_date": "2024-11-26 15:27:02",
      },
      // ...
    ]

    GEThttps://signals.gse.live/feed /dns

    DNS Related Reported Signals

    All signals related to the DNS made available to you from reported threat feeds on the GSE

    Attributes

    • Name
      reportDateFrom
      Type
      datetime
      Description
      Restrict the signals by report date
    • Name
      reportDateTo
      Type
      datetime
      Description
      Restrict the signals by report date
    • Name
      importDateFrom
      Type
      datetime
      Description
      Restrict the signals by import date
    • Name
      importDateTo
      Type
      datetime
      Description
      Restrict the signals by import date
    • Name
      limit
      Type
      integer
      Description
      Limit the number of results to the supplied number Defaults to 50. Max 10000
    • Name
      offset
      Type
      integer
      Description
      Offset the results by the supplied number Defaults to 0

    Request

    GET /dns
    
    curl -G https://signals.gse.live/feed/dns \
      -H "API-KEY: 4tqaTgMkBAUzAgUI" \
      -H "API-SECRET: z0xgqjREXCMmnlYI" \
      -d reportDateFrom=[[value]] \
      -d reportDateTo=[[value]] \
      -d importDateFrom=[[value]] \
      -d importDateTo=[[value]] \
      -d limit=[[value]] \
      -d offset=[[value]] \

    Response

    [
      {
        "signal": "https://somesignal.com",
        "signal_type": "url",
        "import_date": "2024-11-26 15:27:02",
        "report_date": "2020-01-23 14:24:06",
        "abuse_type": "phishing",
        "hostname": "somesignal.com",
        "domain_name": "somesignal.com",
        "domain_prefix": "somesignal",
        "subdomain_prefix": "null",
        "tld": "com",
        "ip_address": "null",
        "ip_address_number": "null",
        "source": "Phishing Provider",
        "open": "1",
        "targeted_brand": "Some Signal Ltd",
        "row_id": "123456",
      },
      // ...
    ]