My Developer PortalMy Developer Portal
Pricing
  • Documentation
  • API Reference
Todo
    Get all todosget
Job
    Get Job Board Jobs (24h)get
Schemas
powered by Zudoku
My Zuplo API
My Zuplo API

Todo

Endpointhttps://data.fantastic.jobs

Get all todos

GET
https://data.fantastic.jobs
/todos

Retrieves a complete list of all todo items from the system. This endpoint returns all todos regardless of their completion status or owner, making it useful for displaying comprehensive todo lists or performing bulk operations.

Get all todos › Responses

200

A list of todos

​object[]
id
​integer · required

The todo ID

title
​string · required

The todo title

completed
​boolean · required

Whether the todo is completed

userId
​integer · required

The user ID who owns the todo

GET/todos
curl --request GET \ --url https://data.fantastic.jobs/todos
shell
Example Responses
[ { "id": 1, "title": "Buy groceries", "completed": false, "userId": 123 }, { "id": 2, "title": "Write documentation", "completed": true, "userId": 456 }, { "id": 3, "title": "Review pull requests", "completed": false, "userId": 123 } ]
json
application/json

Job