Instructional guide or how-to article providing step-by-step instructions. Contains guide content, category, author, tags, and publication information for knowledge bases and help centers.
https://api.mockly.codes/guides?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/guidesGet a collection of guides
/content/guides/guides/:idGet a single guide by ID
/content/guides/:id/guides/metaGet resource metadata and schema
/content/guides/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/guides?q=laptopGET https://api.mockly.codes/guides?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 guides
fetch('https://api.mockly.codes/guides?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/guides?count=10'
)
data = response.json()curl "https://api.mockly.codes/guides?count=10"fetch('https://api.mockly.codes/guides?nocache=true')idintegerUnique identifier for the guide
random_inttitlestringTitle of the guide (e.g., How to Set Up Your Account, Getting Started Guide)
sentencedescriptionstringBrief description or overview of what the guide covers
paragraphcategorystringCategory or topic area the guide belongs to (e.g., Setup, Troubleshooting, Advanced)
categoryauthorstringFull name of the guide author
namecontentstringFull guide content with instructions and explanations
paragraphtagsarrayArray of tags for categorization and searchability
tagspublished_atstringTimestamp when the guide was published
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