SDKs
Kotlin
Patrones idiomáticos de Kotlin para Android y JVM
Usa OkHttp + kotlinx.serialization para JVM/Android, o Ktor para un estilo orientado a Coroutine. OkHttp se muestra abajo.
Gradle
dependencies {
implementation("com.squareup.okhttp3:okhttp:4.12.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3")
}Configuración
import okhttp3.*
import kotlinx.serialization.json.Json
private const val API = "https://openapi.thunderbit.com/openapi/v1"
private val JSON_MEDIA = "application/json".toMediaType()
private val client = OkHttpClient()
private fun request(path: String) = Request.Builder()
.url("$API$path")
.header("Authorization", "Bearer ${System.getenv("THUNDERBIT_API_KEY")}")Distill de una página
val body = """{"url": "https://thunderbit.com/playground"}"""
.toRequestBody(JSON_MEDIA)
client.newCall(request("/distill").post(body).build()).execute().use { res ->
if (!res.isSuccessful) error("HTTP ${'$'}{res.code}")
println(res.body!!.string())
}Extract de datos estructurados
val body = """
{
"url": "https://example.com/product/iphone-15-pro",
"schema": {
"type": "object",
"properties": {
"name": { "type": "string" },
"price": { "type": "number" }
},
"required": ["name", "price"]
}
}
""".trimIndent().toRequestBody(JSON_MEDIA)
val res = client.newCall(request("/extract").post(body).build()).execute()Coroutines + batch
Para trabajo en UI de Android, envuélvelo en withContext(Dispatchers.IO) o usa el cliente suspend de Ktor. Para batch jobs, envía y luego espera en un handler de webhook — ver Webhooks.
Un SDK oficial de Kotlin está en desarrollo — vuelve pronto.