Skip to content

JSON to Go

New

Generate Go structs with json struct tags from sample JSON.

  • Processed in your browser
  • Privacy-first
  • No account required
  • Nothing uploaded by default

Examples

Go struct

{"id":1,"name":"DevKit"}
type Root struct {
  Id int64 `json:"id"`
}