Frequently Asked Question entry with question, answer, category, display order, helpful votes, view count, and timestamps. Used for help centers, knowledge bases, and customer support documentation.
https://api.mockly.codes/faqs?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/faqsGet a collection of faqs
/reference/faqs/faqs/:idGet a single faq by ID
/reference/faqs/:id/faqs/metaGet resource metadata and schema
/reference/faqs/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/faqs?q=laptopGET https://api.mockly.codes/faqs?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 faqs
fetch('https://api.mockly.codes/faqs?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/faqs?count=10'
)
data = response.json()curl "https://api.mockly.codes/faqs?count=10"fetch('https://api.mockly.codes/faqs?nocache=true')idintegerUnique identifier for the FAQ entry
random_intquestionstringThe frequently asked question
sentenceanswerstringAnswer or solution to the question
paragraphcategorystringFAQ category (e.g., Getting Started, Billing, Technical, Account)
faq_categoryorderintegerDisplay order or sort position in the FAQ list
random_inthelpful_countintegerNumber of users who found this FAQ helpful
random_intviewsintegerTotal number of times this FAQ has been viewed
random_intcreated_atstringTimestamp when the FAQ was created
past_datedate-timeupdated_atstringTimestamp when the FAQ was last updated
past_datedate-timecountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request