Sample code for 30+ languages & platforms
B4X

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 B4X Downloads

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

Dim http As ChilkatHttp
http.Initialize("http")

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


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