I Created a Function that gets the Resultstring from the API Website and then searches for the Name in the JSON String.
Function Returns either
"NPI not found" if there are no Results
"Error in Request" if there is another problem
Or the Name if everything worked
As far as i know there are specific librarys that can handle Json but i went with a litttle mid and instr magic.
I guess Regex would also work but i am not good with that :D
Public Function getNpi(Number As String)
On Error GoTo errorhandler:
'Number = 1245319599
Web_URL = "https://npiregistry.cms.hhs.gov/api/?number=" & Number
With CreateObject("msxml2.xmlhttp")
.Open "GET", Web_URL, False
.send
resultstring = .responseText
End With
emptyresult = "{" & """" & "result_count" & """" & ":0, " & """" & "results" & """" & ":[]}"
If resultstring = emptyresult Then
getNpi = "NPI not found"
Exit Function
End If
searchstring = """" & "name" & """:"
Namestart = InStr(1, resultstring, searchstring) + 9
Nameend = InStr(Namestart, resultstring, ",") - Namestart - 1
finalname = Mid(resultstring, Namestart, Nameend)
getNpi = finalname
Exit Function
errorhandler:
getNpi = "Error in Request"
End Function
Sub test()
Debug.Print getNpi("1345319599")
End Sub
Bookmarks