Personal note or memo with title, content, author, color coding, tags, pin/archive status, and timestamps. Used for note-taking applications, personal organizers, and knowledge management systems.
https://api.mockly.codes/notes?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/notesGet a collection of notes
/productivity/notes/notes/:idGet a single note by ID
/productivity/notes/:id/notes/metaGet resource metadata and schema
/productivity/notes/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/notes?q=laptopGET https://api.mockly.codes/notes?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 notes
fetch('https://api.mockly.codes/notes?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/notes?count=10'
)
data = response.json()curl "https://api.mockly.codes/notes?count=10"fetch('https://api.mockly.codes/notes?nocache=true')idintegerUnique identifier for the note
random_inttitlestringNote title or heading
sentencecontentstringNote content or body text
paragraphauthor_idintegerForeign key reference to the user who created the note
random_intauthorstringFull name of the note author
namecolorstringColor code or name for visual organization
colortagsarrayArray of tags for categorization and search
tagspinnedbooleanWhether the note is pinned to the top of the list
booleanarchivedbooleanWhether the note is archived and hidden from the main view
booleancreated_atstringTimestamp when the note was created
past_datedate-timeupdated_atstringTimestamp when the note was last modified
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