# Authors ## Author Search `client.AI.Authors.List(ctx, query) (*SinglePage[AuthorListResponse], error)` **get** `/accounts/{account_id}/ai/authors/search` Searches Workers AI models by author or organization name. ### Parameters - `query AuthorListParams` - `AccountID param.Field[string]` ### Returns - `type AuthorListResponse interface{…}` ### Example ```go package main import ( "context" "fmt" "github.com/cloudflare/cloudflare-go" "github.com/cloudflare/cloudflare-go/ai" "github.com/cloudflare/cloudflare-go/option" ) func main() { client := cloudflare.NewClient( option.WithAPIToken("Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY"), ) page, err := client.AI.Authors.List(context.TODO(), ai.AuthorListParams{ AccountID: cloudflare.F("023e105f4ecef8ad9ca31a8372d0c353"), }) if err != nil { panic(err.Error()) } fmt.Printf("%+v\n", page) } ``` #### Response ```json { "errors": [ {} ], "messages": [ "string" ], "result": [ {} ], "success": true } ```