Skip to main content

Quickstart

Use this flow when you want to go from a fresh API key to a completed branded asset as quickly as possible.

Before you begin

  • Base URL: https://api.techforgeinnovate.com
  • Auth header: x-api-key: YOUR_API_KEY
  • API keys are created in the TFI Studio app at https://app.techforgeinnovate.com/api-access
  • Project-aware endpoints only return data that belongs to the account behind the API key

1. Confirm the key works

Expected response:

2. List active projects

Projects are reusable branded workflows inside TFI Studio. They define the template, instruction schema, scheduling window, and downstream handling for a render.
Example response:

3. Inspect the mapping fields for a project

Mapping fields tell you which values the project expects. Use them to build the values object for a render job.
Example response:

4. Submit a job

POST /jobs/v2 stores your request as job input, resolves the referenced project, queues the work, and returns the queued job record immediately.
Example response:

5. Poll the job

When the job finishes, check the output payload for the final storage path or output metadata produced by your workflow.

6. Turn the output path into a signed URL

Common next steps