# Authors ## Author Search `client.ai.authors.list(AuthorListParamsparams, RequestOptionsoptions?): SinglePage` **get** `/accounts/{account_id}/ai/authors/search` Searches Workers AI models by author or organization name. ### Parameters - `params: AuthorListParams` - `account_id: string` ### Returns - `AuthorListResponse = unknown` ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); // Automatically fetches more pages as needed. for await (const authorListResponse of client.ai.authors.list({ account_id: '023e105f4ecef8ad9ca31a8372d0c353', })) { console.log(authorListResponse); } ``` #### Response ```json { "errors": [ {} ], "messages": [ "string" ], "result": [ {} ], "success": true } ``` ## Domain Types ### Author List Response - `AuthorListResponse = unknown`