For Agents
Create and read Lytho projects and tasks, list users, and inspect proofs (creative reviews) for in-house creative workflow management.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Lytho (InMotionNow) API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Lytho (InMotionNow) API.
List, create, and update Lytho projects via /projects and /projects/{projectId}
List and create tasks within projects via /tasks and retrieve a specific task with /tasks/{taskId}
List users in the Lytho workspace via /users to assign work and lookup reviewers
GET STARTED
Use for: I want to create a new creative project from an intake brief, List all open projects in Lytho, Get the details of a specific project by ID, Create a task under an existing project
Not supported: Does not handle digital asset storage delivery, brand asset distribution, or financial budgeting — use for Lytho project/task creation, user lookup, and proof review status only.
Jentic publishes the only available OpenAPI specification for Lytho (InMotionNow) API, keeping it validated and agent-ready. Lytho (formerly InMotionNow) is a creative workflow management platform used by in-house marketing and creative teams to intake, route, review, and approve creative work. The 9-endpoint API covers projects, tasks, proofs (creative reviews), and users — letting external systems create projects from briefs, push tasks into the work queue, and read review status back into upstream tools. Authentication is bearer token.
List proofs (creative review/approval records) via /proofs to track review status of creative deliverables
Push intake forms or briefs from external systems into Lytho as new projects automatically
Patterns agents use Lytho (InMotionNow) API for, with concrete tasks.
★ Brief-to-Project Intake Automation
When a marketing team submits a brief in a form, ticketing tool, or chat, automatically create the matching Lytho project so creative work starts without manual data re-entry. POST /projects accepts the project fields; POST /tasks adds the breakdown tasks under it. Cuts time-to-start for creative requests that previously sat in inboxes.
POST /projects with name 'Q3 Product Launch Email', then POST /tasks for each deliverable in the brief (banner, email, landing page).
Creative Status Reporting
Pull project, task, and proof status from Lytho into a central reporting dashboard or stakeholder update. GET /projects, GET /tasks, and GET /proofs return the current state across the creative pipeline. Useful for marketing leaders who want a single view across multiple campaigns without logging into Lytho.
Call GET /projects and GET /proofs, then summarise how many proofs are awaiting review by project.
Cross-System Task Sync
Sync Lytho tasks with the rest of the marketing operating stack — for example, mirroring tasks into a project management tool the wider company uses, or pushing a 'task complete' event when a proof is approved. PUT /projects/{projectId} updates project fields; the GET endpoints surface state for one-way reads.
Update project ID 12345 with status 'completed' via PUT /projects/12345 once all proofs return 'approved'.
AI Agent for Creative Operations
An LLM agent acting as a creative operations coordinator uses Lytho to spin up projects, route tasks to the right reviewers, and report on proof status. Through Jentic, the agent searches by intent ('create a creative project', 'list proofs awaiting review'), loads the schema, and executes — bearer-token credential handling is abstracted away.
List proofs with GET /proofs, identify those waiting more than 3 days, and notify the assigned user retrieved from GET /users.
9 endpoints — jentic publishes the only available openapi specification for lytho (inmotionnow) api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/projects
List all projects
/projects
Create a new project
/projects/{projectId}
Get a project by ID
/projects/{projectId}
Update a project
/tasks
List all tasks
/tasks
Create a new task
/users
List users in the workspace
/proofs
List proofs / creative reviews
/projects
List all projects
/projects
Create a new project
/projects/{projectId}
Get a project by ID
/projects/{projectId}
Update a project
/tasks
List all tasks
/tasks
Three things that make agents converge on Jentic-routed access.
Credential isolation
Lytho bearer tokens are stored encrypted in the Jentic vault (MAXsystem). Agents call Lytho operations through scoped Jentic credentials — important because a leaked token could create or modify creative projects across the workspace.
Intent-based discovery
Agents search Jentic with intents like 'create a creative project' or 'list proofs awaiting review' and Jentic returns the matching Lytho operations with their input schemas. The agent does not have to learn the Lytho data model from documentation.
Time to first call
Direct Lytho integration: a few hours to wire bearer auth and the project/task/proof relationships. Through Jentic: minutes — schema-first execution makes the call shapes obvious.
Alternatives and complements available in the Jentic catalogue.
Specific to using Lytho (InMotionNow) API through Jentic.
Why is there no official OpenAPI spec for Lytho (InMotionNow) API?
Lytho does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Lytho (InMotionNow) API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Lytho (InMotionNow) API use?
The Lytho API uses HTTP bearer tokens — pass 'Authorization: Bearer <token>' on every request. Through Jentic, the bearer token is stored encrypted in the MAXsystem vault and never reaches the agent's context.
Can I create projects and tasks programmatically?
Yes. POST /projects creates a project (returning the project ID), and POST /tasks creates a task that can reference the project. PUT /projects/{projectId} updates an existing project — for example, to flip status when work is approved.
What are the rate limits for the Lytho (InMotionNow) API?
Rate limits are not encoded in the spec. Lytho enforces them per token; check the Lytho admin console or contact Lytho support via zapierdocs.ignite.inmotionnow.com for the per-minute limits applied to your account.
How do I list creative proofs through Jentic?
Search Jentic for 'list Lytho proofs' to find GET /proofs. Load the schema, supply any filters required, and execute. Cross-reference the assignee against GET /users to identify who owns the next review step. Get started at https://app.jentic.com/sign-up.
Is the API the same one InMotionNow used before the rebrand?
InMotionNow rebranded to Lytho. The base URL is api.lytho.com but the API still serves customers who originally signed up with InMotionNow — endpoints, auth model, and data shapes remain consistent for existing integrations.
Create a new task
/users
List users in the workspace
/proofs
List proofs / creative reviews