Sample code for 30+ languages & platforms
Visual Basic 6.0

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 Visual Basic 6.0 Downloads

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

Dim http As New ChilkatHttp

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

Debug.Print "Response status code: " & http.LastStatus
Debug.Print "Response JSON:"
Debug.Print jsonStr