Versium REACH API services share a few common outputs that are returned for all Versium APIs. To see sample results, go to Make Your First API Call .

Output nameDescription
versionThe version of the API service used.
query_idAn ID unique to each query, useful if you need to troubleshoot.
resultsContains the results of the API call - this is the information you've asked for.
input_queryShows the inputs and options you used to make the API call
num_resultsGives the number of match records for the given search parameters
query_timeHow long the API call lookup took
num_matchesThe total number of matches returned by the API
match_countsObject containing the number of matches for each output type
errorsAn array of error messages - only present if the API returns any error

Output Example

Here's an example of the output you can expect:

{
  "versium": {
    "version":"2.0",
    "match_counts":{
      "address":1,
      "email":1
     },
      "num_matches":1,
       "num_results":1,
        "query_id":"48f9238a-ba98-4c45-97df-74f405c97527",
        "query_time":7.340619087219238,
        "results":[
          {
             "First Name":"Veronica",
             "Last Name":"Queck",
             "Address":"18804 10TH PL W",
             "City":"Kirklan",
             "State":"WA",
             "Zip":"98033",
             "Country":"US",  
             "Email Address":"[email protected]"
      } 
    ], 
    "input_query":{ 
      "first":"veronica"
       "last":"queck"
       "zip":"98117"
    }
  }
}

See Also

Output for Campaign Types