Project record with owner, status, priority, budget, timeline, completion percentage, and team size. Used for project management, team collaboration, and business planning systems.
https://api.mockly.codes/projects?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/projectsGet a collection of projects
/productivity/projects/projects/:idGet a single project by ID
/productivity/projects/:id/projects/metaGet resource metadata and schema
/productivity/projects/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/projects?q=laptopGET https://api.mockly.codes/projects?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 projects
fetch('https://api.mockly.codes/projects?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/projects?count=10'
)
data = response.json()curl "https://api.mockly.codes/projects?count=10"fetch('https://api.mockly.codes/projects?nocache=true')idintegerUnique identifier for the project
random_intnamestringProject name or title
sentencedescriptionstringDetailed description of the project goals and scope
paragraphownerstringFull name of the project owner or manager
nameowner_idintegerForeign key reference to the user who owns this project
random_intstatusstringCurrent project status (e.g., planning, active, on_hold, completed, cancelled)
project_statusprioritystringProject priority level (e.g., low, medium, high, critical)
prioritybudgetnumberTotal project budget
pricecurrencystringISO currency code for the budget (e.g., USD, EUR, GBP)
currencystart_datestringProject start date
past_datedateend_datestringProject end date or deadline
future_datedatecompletionintegerProject completion percentage (0-100)
percentageteam_sizeintegerNumber of team members working on the project
random_intcreated_atstringTimestamp when the project was created
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