Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Verity API returns a JSON response with Content-Type: application/json; charset=UTF-8  showing the request has the following status: 

Code Block
languagejson
{
    "dataAvailable" : false,
    "status" : "INITIATED",
    "pageUrl" : "https://aragonresearch.com/cisco-google-and-zoom-enhance-free-meetings-to-assist-with-coronavirus/",
  "uuid": "deb59fc2-b8ef-4dbe-ab64-6a1950a45a76"
}

For a list of supported status messages, refer to Application Status Codes.

...

Poll the same endpoint specified in Step 1.  Within a short period, once analysis of the page and its associated image is complete, a status change occurs and the returned message updates to:

Code Block
languagejson
{
      "dataAvailable" : true,
      "status" : "PROCESSED",
      "pageUrl" : "https://aragonresearch.com/cisco-google-and-zoom-enhance-free-meetings-to-assist-with-coronavirus",
    "uuid": "73146868-8d77-4bf0-8e89-eeb9d8e04cb2",
    "verityData": {...}
}

Once the status changes to PROCESSED, the JSON page classification results are returned in the response message data payload.

...

The JSON response details the complete brand safety, keyword, and categorization analysis data for the page and its any prominent image detected.  See JSON Response for details about the fields included in the response.

Code Block
{
    "dataAvailable": true,
    "status": "PROCESSED",
    "pageUrl": "https://aragonresearch.com/cisco-google-and-zoom-enhance-free-meetings-to-assist-with-coronavirus/",
  "uuid": "73146868-8d77-4bf0-8e89-eeb9d8e04cb2",
  "verityData": {
    "languageCode": "en",
    "iab": {
      "v1": [
        {
          "id": "IAB19",
          "category": "Technology & Computing",
          "score": 0.6
        },
        {
          "id": "IAB19-8",
          "category": "Computer Networking",
          "score": 0.13
        },
        {
          "id": "IAB19-23",
          "category": "Net Conferencing",
          "score": 0.11
        },
        {
          "id": "IAB19-18",
          "category": "Internet Technology",
          "score": 0.11
        }
      ],
      "v2": [
        {
          "id": "596",
          "category": "Technology & Computing",
          "score": 0.66
        },
        {
          "id": "607",
          "category": "Web Conferencing",
          "score": 0.12,
          "parent": {
            "id": "602",
            "category": "Computer Software and Applications",
            "parent": {
              "id": "599",
              "category": "Computing",
              "parent": {
                "id": "596",
                "category": "Technology & Computing"
              }
            }
          }
        },
        {
          "id": "600",
          "category": "Computer Networking",
          "score": 0.09,
          "parent": {
            "id": "599",
            "category": "Computing",
            "parent": {
              "id": "596",
              "category": "Technology & Computing"
            }
          }
        },
        {
          "id": "602",
          "category": "Computer Software and Applications",
          "score": 0.08,
          "parent": {
            "id": "599",
            "category": "Computing",
            "parent": {
              "id": "596",
              "category": "Technology & Computing"
            }
          }
        }
      ]
    },
    "keywords": [
      "cisco",
      "zoom",
      "google",
      "logmein",
      "coronavirus",
      "enhance",
      "meetings",
      "assist",
      "free",
      "and",
      "china",
      "jim lundy",
      "customers like zoom",
      "rise in",
      "aragon"
    ],
    "safe": true,
    "threats": [],
    "events": [],
    "sentiments": [
      {
        "sentiment": "neutral",
        "score": 0.71
      },
      {
        "sentiment": "positive",
        "score": 0.26
      },
      {
        "sentiment": "negative",
        "score": 0.03
      }
    ]
  }
}

...