example-data.com

projects

projects

Browse 85 projects records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

orgId
Lakin Group
teamId
teams/4
name
Performance Optimization
slug
lakin-group-performance-optimization
description
Vulpes vestrum beatae taceo supplanto trucido vergo.
status
on_hold
startDate
2025-06-25
dueDate
ownerUserId
71
createdAt
updatedAt
orgId
Lakin Group
teamId
name
Data Pipeline
slug
lakin-group-data-pipeline
description
Tepesco coniecto volaticus super tantillus id administratio ater cohors alo.
status
completed
startDate
2026-05-14
dueDate
2026-08-11
ownerUserId
121
createdAt
updatedAt
orgId
Lakin Group
teamId
teams/3
name
Admin Panel
slug
lakin-group-admin-panel
description
Suppono volaticus cuius cognatus.
status
completed
startDate
2025-10-27
dueDate
2026-06-01
ownerUserId
71
createdAt
updatedAt
orgId
Lakin Group
teamId
teams/4
name
Dashboard Overhaul
slug
lakin-group-dashboard-overhaul
description
Sui caecus pecco carcer votum carcer repellat arbitro ab condico.
status
on_hold
startDate
2026-02-10
dueDate
ownerUserId
202
createdAt
updatedAt
orgId
Lakin Group
teamId
teams/5
name
Design System
slug
lakin-group-design-system
description
Curo sapiente considero aliqua canis suffragium vir carbo voluptatum.
status
on_hold
startDate
2026-01-16
dueDate
2026-09-02
ownerUserId
98
createdAt
updatedAt
orgId
Cremin - Kautzer
teamId
teams/6
name
API Migration
slug
cremin-kautzer-api-migration
description
Perspiciatis sodalitas theatrum convoco acervus cohibeo conqueror.
status
active
startDate
2025-12-02
dueDate
2026-06-03
ownerUserId
88
createdAt
updatedAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/projects?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/projects?limit=25"
);
const { data, meta } = await res.json();
import type { Project, ListEnvelope } from "https://example-data.com/types/projects.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/projects?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Project>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/projects",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 1,
      "orgId": 1,
      "teamId": 4,
      "name": "Performance Optimization",
      "slug": "lakin-group-performance-optimization",
      "description": "Vulpes vestrum beatae taceo supplanto trucido vergo.",
      "status": "on_hold",
      "startDate": "2025-06-25",
      "dueDate": null,
      "ownerUserId": 71,
      "createdAt": "2025-05-31T21:48:05.378Z",
      "updatedAt": "2026-01-10T18:30:17.147Z"
    },
    {
      "id": 2,
      "orgId": 1,
      "teamId": null,
      "name": "Data Pipeline",
      "slug": "lakin-group-data-pipeline",
      "description": "Tepesco coniecto volaticus super tantillus id administratio ater cohors alo.",
      "status": "completed",
      "startDate": "2026-05-14",
      "dueDate": "2026-08-11",
      "ownerUserId": 121,
      "createdAt": "2025-09-15T21:52:18.207Z",
      "updatedAt": "2025-10-30T19:08:24.435Z"
    },
    {
      "id": 3,
      "orgId": 1,
      "teamId": 3,
      "name": "Admin Panel",
      "slug": "lakin-group-admin-panel",
      "description": "Suppono volaticus cuius cognatus.",
      "status": "completed",
      "startDate": "2025-10-27",
      "dueDate": "2026-06-01",
      "ownerUserId": 71,
      "createdAt": "2025-08-16T13:48:58.315Z",
      "updatedAt": "2025-12-21T05:46:11.897Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 85,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/projects?page=1",
    "first": "/api/v1/projects?page=1",
    "last": "/api/v1/projects?page=4",
    "next": "/api/v1/projects?page=2",
    "prev": null
  }
}

View full response →

Draftbit