List Active Projects
Returns projects that belong to the authenticated account and are currently active according to each project’s optional start and end dates.
Example request
curl "https://api.techforgeinnovate.com/api/provider/projects/active" \
-H "x-api-key: $TFI_API_KEY"
Response
Always returns Success for a successful lookup.
List of active projects visible to the API-key owner.
Each item in data contains:
Project name. Empty string when a name is not set.
Project workflow type, such as ai_talking_video, video, or another supported template type.
ISO timestamp for the project start date, or null.
ISO timestamp for the project end date, or null.
Example response:
{
"message": "Success",
"data": [
{
"projectId": "468ea7a0-66e1-4357-a760-236e54167f3e",
"projectName": "Spring campaign avatar video",
"projectType": "ai_talking_video",
"startDate": "2026-04-01T00:00:00.000Z",
"endDate": null
}
]
}
Status codes
200 OK when the request succeeds
401 Unauthorized when the key is missing or invalid