Machine access

API

Read-only JSON for kofiyatech products. Kofamilia is available today; Jefouree and AskLucy will be added here when those APIs ship.

Products

Which APIs you can call

Each product uses its own key. Docs describe paths and headers only — keys are never shown here.

Available

Kofamilia

Sprint tasks and product catalog.

Kofamilia docs

Later

Jefouree

Machine access will be documented here when it ships.

Later

AskLucy

Machine access will be documented here when it ships.

Kofamilia

Read-only JSON for sprint tasks and product cards. Authenticate with an API key — not your browser login.

API key

Send header X-Kofamilia-Key. The key is never shown on this page.

Current sprint

Fetch To do / In progress tasks for the date-window sprint without guessing the sprint number.

Product catalog

Each card includes nested projects. Filter by name or id to return one product.

Base URL

This host:

http://kofiyatechapps.com

Production uses the same paths on your deployed host.

Endpoints

Method Path Purpose
GET /api/sprint/current/tasks Tasks in the current sprint
GET /api/sprint/<n>/tasks Tasks in sprint number n
GET /api/kofamilia/products Product cards and nested projects

Sprint tasks

Optional query: repeat status (todo, in_progress, done, closed) and exclude_project (product name, case-insensitive).

GET http://kofiyatechapps.com/api/sprint/current/tasks?status=todo&status=in_progress&exclude_project=Example+product
X-Kofamilia-Key: $KOFAMILIA_API_KEY

Product catalog

Returns non-archived products for the API owner, each with name, description, and projects. Optional name or id query to return one card (for example Example product).

GET http://kofiyatechapps.com/api/kofamilia/products
X-Kofamilia-Key: $KOFAMILIA_API_KEY

GET http://kofiyatechapps.com/api/kofamilia/products?name=Example+product
X-Kofamilia-Key: $KOFAMILIA_API_KEY

Example

curl -s -H "X-Kofamilia-Key: $KOFAMILIA_API_KEY" \
  http://kofiyatechapps.com/api/sprint/current/tasks?status=todo&status=in_progress

curl -s -H "X-Kofamilia-Key: $KOFAMILIA_API_KEY" \
  http://kofiyatechapps.com/api/kofamilia/products

Confirm action