SDKs

Go

Patterns Go idiomatiques pour la Thunderbit Open API

Utilise net/http + encoding/json. Aucun SDK requis. Pour la haute concurrence, associe à un pool de workers Goroutine ou utilise golang.org/x/sync/errgroup.

Client

package thunderbit

import (
    "bytes"
    "encoding/json"
    "fmt"
    "io"
    "net/http"
    "os"
)

const API = "https://openapi.thunderbit.com/openapi/v1"

type Client struct {
    HTTP *http.Client
    Key  string
}

func New() *Client {
    return &Client{HTTP: http.DefaultClient, Key: os.Getenv("THUNDERBIT_API_KEY")}
}

func (c *Client) post(path string, body any, out any) error {
    raw, _ := json.Marshal(body)
    req, _ := http.NewRequest("POST", API+path, bytes.NewReader(raw))
    req.Header.Set("Authorization", "Bearer "+c.Key)
    req.Header.Set("Content-Type", "application/json")
    resp, err := c.HTTP.Do(req)
    if err != nil { return err }
    defer resp.Body.Close()
    if resp.StatusCode >= 400 {
        b, _ := io.ReadAll(resp.Body)
        return fmt.Errorf("thunderbit: %s: %s", resp.Status, b)
    }
    return json.NewDecoder(resp.Body).Decode(out)
}

Distill une page

type DistillResp struct {
    Data struct { Markdown string `json:"markdown"` } `json:"data"`
}

c := New()
var out DistillResp
if err := c.post("/distill",
    map[string]any{"url": "https://thunderbit.com/playground"}, &out); err != nil {
    panic(err)
}
fmt.Println(out.Data.Markdown)

Astuces

  • Réutilise un seul *http.Client à travers les goroutines — c'est sûr et ça pool les connexions
  • Ferme toujours les corps de réponse (defer resp.Body.Close()) ou tu vas leak des FDs
  • Pour 10+ URLs, préfère /batch/distill — voir Cycle de vie des batch jobs

Un SDK Go officiel est en développement — reviens bientôt.