Loading Finalizo...
Loading Finalizo...
Programmatically create projects, sync clients, issue handover packs, and query cryptographic sign-off status from your internal tools.
Bearer Authentication
Keys start with fz_live_ or fz_test_.
Scoped Permissions
Use read, write, or admin scopes per key.
JSON Standard
Responses return data, meta, and error envelopes.
Event Automation
REST endpoints and Zapier polling triggers.
Base URL: https://finalizo.com/api/v1
/api/v1/openapi.jsonpublicDownload the OpenAPI 3.1 spec/api/v1/authreadValidate an API key/api/v1/mereadGet the authenticated workspace user/api/v1/projectsreadList projects. Query: status, limit, cursor/api/v1/projectswriteCreate a project and handover pack/api/v1/projects/:idreadGet project details/api/v1/projects/:idwriteUpdate project name, status, or launch date/api/v1/projects/:id/packreadGet handover pack items, resources, terms, and masked credentials/api/v1/projects/:id/pack/sendwriteMark the pack as sent and return the client URL/api/v1/projects/:id/signoffreadGet sign-off status for a project/api/v1/clientsreadList clients. Query: limit, cursor/api/v1/clientswriteCreate or update a client by email/api/v1/clients/:idreadGet a client and linked projects/api/v1/signoffsreadList sign-offs. Query: status, limit, cursor/api/v1/templatesreadList built-in handover templates/api/v1/zapier/actions/create-projectwriteZapier action: create project/api/v1/zapier/actions/send-packwriteZapier action: send pack/api/v1/zapier/triggers/pack-sentreadZapier polling trigger: pack sent/api/v1/zapier/triggers/pack-viewedreadZapier polling trigger: pack viewed/api/v1/zapier/triggers/client-signed-offreadZapier polling trigger: client signed offcurl https://finalizo.com/api/v1/projects \
-H "Authorization: Bearer fz_live_your_key_here"const response = await fetch("https://finalizo.com/api/v1/projects", {
headers: { Authorization: "Bearer fz_live_your_key_here" }
});
const payload = await response.json();curl https://finalizo.com/api/v1/projects \
-X POST \
-H "Authorization: Bearer fz_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Website closeout",
"clientName": "Jane Smith",
"clientEmail": "jane@example.com",
"projectType": "Web Design",
"launchDate": "2026-06-01"
}'