Author profile with biography, publication statistics, genres, ratings, and verification status. Used for book databases, publishing platforms, and literary management systems.
https://api.mockly.codes/authors?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/authorsGet a collection of authors
/people/authors/authors/:idGet a single author by ID
/people/authors/:id/authors/metaGet resource metadata and schema
/people/authors/metaThe search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.
Search across all text fields:
GET https://api.mockly.codes/authors?q=laptopGET https://api.mockly.codes/authors?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 authors
fetch('https://api.mockly.codes/authors?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/authors?count=10'
)
data = response.json()curl "https://api.mockly.codes/authors?count=10"fetch('https://api.mockly.codes/authors?nocache=true')idintegerUnique identifier for the author
random_intnamestringFull name of the author
nameemailstringAuthor's contact email address
emailemailbiostringAuthor biography or background information
paragraphphotostringURL to the author's photo or portrait
avataruriwebsitestringAuthor's personal or professional website URL
urluribooks_countintegerTotal number of books published by this author
random_intarticles_countintegerTotal number of articles written by this author
random_intgenresarrayArray of genres the author writes in (e.g., Fiction, Non-Fiction, Mystery)
tagsratingnumberAverage reader rating of the author's works, typically on a scale of 1-5
floatverifiedbooleanWhether the author account is verified as authentic
booleancountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request