Aide NowToPrint
Aide NowToPrint
Centre d'aide
Getting Started
Platform Overview
Marketplace
Print Shop
Prepress
Design Studio
Orders & Delivery
Notifications
Free Tools
Templates
VDP (Variable Data Printing)
Developer & API
API Reference
OpenAPI Explorer & Spec Reference
Getting StartedAuthenticationEndpointsWebhooksExamplesPartner API Access ModelQuickstart
Webhook Access & DeliveryXJDF API RehberiXJDF Master Data Model
FAQ
Technical Reference
Admin Panel
Developer & APIPartner api
  1. Developer
  2. Partner API
  3. Getting Started

Getting Started

Request access, create a key, import the published contract, and send your first Partner API request.

Développeurdocs2 min de lectureRévisé 16 avr. 2026

Getting Started

Use this path to go from access request to first successful Partner API call with the public contract and the correct security posture.


1. Request approved access

Contact info@nowtoprint.com with:

  • company name and website
  • integration use case
  • expected volume or rollout stage
  • whether you need webhooks, XJDF, or partner-specific onboarding

2. Create a sandbox key

After approval, generate a sandbox credential in the partner portal Developer area.

EnvironmentPrefixBase URL
Sandboxntp_test_*https://api.nowtoprint.com/api/v1
Productionntp_live_*https://api.nowtoprint.com/api/v1

Use sandbox first. Production credentials should only be enabled after validation and rollout approval.


3. Import the contract

Start from the published OpenAPI file:

  • /docs/api/openapi.yaml

Import that URL into Postman, Bruno, or Insomnia before writing production code. It keeps payloads, examples, and expected responses aligned with the public contract.


4. Send a first request

Use an estimate request to validate auth, payload shape, and environment wiring:

curl -X POST https://api.nowtoprint.com/api/v1/estimate \
  -H "Authorization: Bearer ntp_test_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "category": "flyer",
    "quantity": 1000
  }'

Once that succeeds, continue into RFQ creation and quote handling.


5. Prepare for production

Before live traffic:

  • rotate away any shared onboarding keys
  • store the production key in managed secrets
  • implement webhook verification
  • log request IDs and honor Retry-After
  • test idempotent retry handling on write operations

Next steps

Quickstart

Authentication

Endpoints

Webhooks

Cet article vous a-t-il été utile?

Articles connexes

  • IAM Guide
  • Organisation Management
  • Registration, Onboarding, and Activation Operations
  • Roles & Permissions Reference
Edit on GitHub

Dernière mise à jour

OpenAPI Explorer & Spec Reference

Download the published machine-readable contracts for the Partner API, XJDF and PrintTalk layer, and Preflight surface.

Authentication

Bearer-key authentication, entitlement-aware limits, and secure key handling for the Partner API.

Sur cette page

Getting Started1. Request approved access2. Create a sandbox key3. Import the contract4. Send a first request5. Prepare for productionNext steps
Ask AI Assistant