Get the daily board
GET
/v1/daily-planThe credential user's board for a date: both sections (TODO plan + PROGRESS) with their fill-status and entries. Read-only — unlike the in-app board it never creates section rows; a date nobody planned answers empty sections with status NOT_FILLED.
Required scopes
tasks:read
Availability
All plans
Quota cost
1 API call
Idempotency
Not applicable
Request
Query parameters
| Field | Type | Description |
|---|---|---|
daterequired | string (date) | Board date as YYYY-MM-DD (UTC day).e.g. 2026-07-23 |
Response 200
The date's board.
Fields
| Field | Type | Description |
|---|---|---|
daterequired | string (date) | The board date (UTC day). |
sectionsrequired | object[] | Always both sections: TODO then PROGRESS. |
▸ ▾ Raw response schema
{
"type": "object",
"properties": {
"date": {
"type": "string",
"format": "date",
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))$",
"description": "The board date (UTC day)."
},
"sections": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DailyPlanSection"
},
"description": "Always both sections: TODO then PROGRESS."
}
},
"required": [
"date",
"sections"
],
"additionalProperties": false,
"description": "The credential user's daily board for one date in the credential's organization."
}Example request
curl
curl -X GET https://app.nowgetitdone.com/v1/daily-plan \
-H "Authorization: Bearer gid_YOUR_API_KEY"Possible errors
- 400
validation_failedRequest validation failed - 401
missing_credentialsMissing credentials - 401
invalid_api_keyInvalid API key - 401
invalid_tokenInvalid access token - 403
insufficient_scopeInsufficient scope - 403
feature_not_enabledFeature not enabled on this plan - 429
rate_limitedRate limit exceeded - 429
quota_exhaustedPlan quota exhausted - 500
internal_errorInternal server error