For Agents
Manage cross-border e-commerce listings, orders, and package fulfillment on the nocnoc marketplace through 8 product, order, and package endpoints.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the nocnoc 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 nocnoc API.
List and create marketplace product listings via /products
Fetch a single product record by SKU through /products/sku/{sku}
Retrieve marketplace orders with filters via /orders
Cancel an order with /orders/{order_id}/cancellation
GET STARTED
Use for: I need to list all my nocnoc product listings, Look up a specific product on nocnoc by SKU, Retrieve the latest orders from the nocnoc marketplace, Cancel a specific nocnoc order by id
Not supported: Does not handle storefront hosting, payment capture, or buyer-side checkout — use for nocnoc seller-side product, order, and package operations only.
Jentic publishes the only available OpenAPI specification for nocnoc API, keeping it validated and agent-ready. The nocnoc API is a marketplace integration surface for sellers managing products, orders, and package fulfillment across nocnoc's Latin America cross-border e-commerce network. Sellers can list and update product catalogs, look up product detail by SKU, retrieve order data, cancel orders, and fetch package records for shipping coordination. The API uses an x-api-key header for authentication on every endpoint.
Pull package records for shipping coordination through /packages
Authenticate every request with the x-api-key header tied to the seller account
Patterns agents use nocnoc API for, with concrete tasks.
★ Catalog Sync
Sellers maintain a master product catalog in their PIM or ERP and need it mirrored to nocnoc for cross-border listings. The /products endpoint supports list and create operations, and /products/sku/{sku} resolves a single record for delta updates. A nightly sync can detect new SKUs in the source system and POST them to nocnoc without manual entry.
Diff the local catalog against /products, POST new SKUs to /products, and call /products/sku/{sku} to verify each listing
Order Fulfillment Workflow
Operations teams need to pull marketplace orders, route them to a warehouse, and surface package data for carrier handoff. The /orders endpoint exposes the order list and detail, /packages returns the package records once fulfilment is created, and /orders/{order_id}/cancellation handles cancellations triggered by stock or fraud signals. This lets a single agent run the full marketplace fulfilment loop.
Poll /orders for new orders, push each to the warehouse, and call /packages to retrieve the shipping record once the order ships
Cross-Border Marketplace Reconciliation
Finance and operations teams reconciling cross-border sales need a structured order and package feed tied to seller SKUs. The nocnoc API exposes orders and the connected packages, which can be joined against shipping carrier confirmations and finance entries. This produces an auditable trail from listing to settlement.
Pull /orders for the previous billing period, then /packages for each order_id and join against the carrier feed to reconcile shipments
AI Agent Marketplace Operator
An operations agent monitoring multiple marketplaces can use Jentic to call nocnoc operations alongside other channels without writing per-channel auth code. A search for 'list my nocnoc orders' surfaces /orders; the agent loads the schema and Jentic injects the x-api-key. The same agent can call /orders/{order_id}/cancellation when an inventory alert fires.
Use Jentic to call /orders, detect a stockout, then call /orders/{order_id}/cancellation for affected order ids
8 endpoints — jentic publishes the only available openapi specification for nocnoc api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/products
List seller product listings on nocnoc
/products
Create a new marketplace product listing
/products/sku/{sku}
Look up a single product by SKU
/orders
Retrieve marketplace orders for the seller
/orders/{order_id}/cancellation
Cancel a specific order
/packages
List package records connected to fulfilled orders
/products
List seller product listings on nocnoc
/products
Create a new marketplace product listing
/products/sku/{sku}
Look up a single product by SKU
/orders
Retrieve marketplace orders for the seller
/orders/{order_id}/cancellation
Cancel a specific order
Three things that make agents converge on Jentic-routed access.
Credential isolation
nocnoc x-api-key values are stored encrypted in the Jentic vault. Agents receive scoped access tokens — the raw API key never enters the agent context, and rotation is handled by Jentic without code changes.
Intent-based discovery
Agents search by intent (e.g. 'list nocnoc orders' or 'create a nocnoc product listing') and Jentic returns the matching operation with its input schema, so the agent picks the right call without browsing nocnoc seller docs.
Time to first call
Direct integration: 1-2 days to wire x-api-key auth, product create/list flows, and order/package polling. Through Jentic: under 30 minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using nocnoc API through Jentic.
Why is there no official OpenAPI spec for nocnoc API?
nocnoc does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call nocnoc 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 nocnoc API use?
nocnoc uses an apiKey passed as the x-api-key header on every request. Through Jentic the key is held encrypted in the vault and injected at call time so it never enters the agent context.
Can I look up a specific product on nocnoc by SKU?
Yes. Call GET /products/sku/{sku} with the seller SKU. The response returns the matching product record, including marketplace listing metadata.
What are the rate limits for the nocnoc API?
The OpenAPI spec does not declare specific rate limits. nocnoc enforces seller-tier quotas — Jentic surfaces 429 responses with backoff so retries are paced correctly.
How do I cancel a nocnoc order through Jentic?
Run pip install jentic, search Jentic for 'cancel a nocnoc order', load the /orders/{order_id}/cancellation operation, supply the order_id, and execute. Jentic injects the x-api-key automatically.
Can I retrieve package data for a fulfilled nocnoc order?
Yes. The /packages endpoint exposes package records connected to orders so a fulfilment workflow can pull shipping handoff data without scraping carrier portals.
/packages
List package records connected to fulfilled orders