For Agents
Retrieve and manage GoDaddy order history, billing information, and purchase records in the OTE test environment.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the GoDaddy Orders API (OTE), or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# 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 GoDaddy Orders API (OTE) API.
List all orders for an account with filtering by date range, domain, or product group
Retrieve detailed information for a specific order including line items and payment details
Filter orders by payment profile or parent order ID
Paginate through large order histories with configurable limits and offsets
GET STARTED
Use for: Get all orders from the last 30 days, Find the order for a specific domain purchase, List all pending orders awaiting payment, Retrieve invoice details for an order
Not supported: Does not process payments, issue refunds, or create orders — use only for retrieving and querying existing order history.
The GoDaddy Orders API (OTE - Operational Test Environment) provides access to order history and billing information for products purchased through GoDaddy. This test environment allows developers to retrieve order details, track purchase history, and access invoicing information for domain registrations, renewals, hosting services, and other GoDaddy products before deploying to production.
Sort orders by creation date, modification date, or total amount
Patterns agents use GoDaddy Orders API (OTE) API for, with concrete tasks.
★ Billing Reconciliation and Reporting
Finance teams can programmatically retrieve order history for reconciliation with payment systems. GET /v1/orders returns orders filtered by date range, product group, or payment profile. Agents can generate billing reports, match invoices to bank statements, and track spending across domain registrations, renewals, and other services.
GET /v1/orders with periodStart and periodEnd parameters covering the billing cycle, then aggregate order totals by product group.
Customer Portal Order Lookup
SaaS platforms managing domain services for customers can provide order history through their own interfaces. GET /v1/orders/{orderId} retrieves full order details including line items and payment information. Combined with the X-Shopper-Id header, resellers can expose order history per customer account.
GET /v1/orders filtered by domain parameter to find the order, then GET /v1/orders/{orderId} for complete details.
Automated Renewal Tracking
Operations teams can cross-reference domain renewals from the Domains API with actual billing via the Orders API. After calling POST /v1/domains/{domain}/renew, agents can verify the order was created and payment processed by searching orders by domain name and date range.
After domain renewal, wait 1-2 minutes then GET /v1/orders with domain filter to retrieve the renewal order and confirm payment status.
AI Agent for Billing Operations
Let an AI agent handle billing inquiries for a web agency — retrieving order history, identifying charges, and matching orders to domains. Through Jentic, the agent loads only the required operations and the GoDaddy API key is injected at execution time.
Use the Jentic search query 'get godaddy order history' to find GET /v1/orders, load its schema, and execute with date range parameters.
2 endpoints — the godaddy orders api (ote - operational test environment) provides access to order history and billing information for products purchased through godaddy.
METHOD
PATH
DESCRIPTION
/v1/orders
List orders with filtering by date, domain, product group, or payment profile
/v1/orders/{orderId}
Get detailed information for a specific order
/v1/orders
List orders with filtering by date, domain, product group, or payment profile
/v1/orders/{orderId}
Get detailed information for a specific order
Three things that make agents converge on Jentic-routed access.
Credential isolation
GoDaddy API keys are stored encrypted in the Jentic vault and injected as the Authorization header at execution time. Raw keys never appear in agent prompts or transcripts.
Intent-based discovery
Agents search by intent such as 'get order history' or 'find order for domain' and Jentic returns the matching endpoint with its schema.
Time to first call
Direct GoDaddy integration: 1 day to model orders and billing. Through Jentic: under 30 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
GoDaddy Domains API (OTE)
Manages domain registration and renewals that create orders in the Orders API.
Use Domains API to perform domain operations, then use Orders API to track billing and payment for those operations.
GoDaddy Shoppers API (OTE)
Manages customer account information linked to orders.
Use Shoppers API to manage customer profiles and Orders API to retrieve their purchase history.
Stripe API
Alternative payment and billing API for SaaS platforms managing their own billing.
Use Stripe for custom billing flows; use GoDaddy Orders API when billing is handled by GoDaddy for domain services.
Specific to using GoDaddy Orders API (OTE) API through Jentic.
What is the GoDaddy OTE environment?
OTE (Operational Test Environment) is GoDaddy's sandbox for development and testing. It mirrors the production API but operates on test data and test orders. No real charges occur in OTE. Once integration is tested in OTE, switch to production credentials.
What authentication does the GoDaddy Orders API use?
The GoDaddy API uses API key authentication sent via the Authorization header. API keys are generated in the GoDaddy developer portal. Through Jentic, keys are stored encrypted and injected at execution time.
Can I retrieve orders for other GoDaddy accounts?
Yes, resellers and agencies can use the X-Shopper-Id header to retrieve orders for customer accounts they manage. This requires appropriate delegated access permissions.
How do I find an order for a specific domain?
Use GET /v1/orders with the domain query parameter to filter orders by domain name. The response includes all orders associated with that domain.
What order information is available through the API?
The API returns order IDs, creation and modification dates, total amounts, payment status, line items with product details, and payment profile information. Full invoice PDFs are not available via the API.