Sample code for 30+ languages & platforms
VB.NET

ISBNdb API v2 Get Book Details

See more HTTP Misc Examples

Demonstrates how to send a GET request to the ISBNdb API v2 with Authorization header.

Chilkat VB.NET Downloads

VB.NET
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

Dim http As New Chilkat.Http

http.SetRequestHeader("Authorization","YOUR_REST_KEY")
Dim jsonStr As String = http.QuickGetStr("https://api2.isbndb.com/book/9780134093413")
If (http.LastMethodSuccess = False) Then
    Debug.WriteLine(http.LastErrorText)
    Exit Sub
End If


Debug.WriteLine("Response status code: " & http.LastStatus)
Debug.WriteLine("Response JSON:")
Debug.WriteLine(jsonStr)