Actuent
easypost.com

EasyPost

EasyPost's best-in-class Shipping APIs provide end-to-end flexibility and more control over parcel shipping and logistics processes.

55
Partly agent-ready
Agent-readiness score out of 100
  • ✓ Clear description of the site
  • ✓ Several pages described
  • ✓ Actions agents can take
  • ✓ 3 or more actions
  • ○ Publishes its own LAWP (/.well-known/lawp.json)
  • ○ Actions agents can execute
  • ○ Business details (address, hours, phone)

How to improve this score

Up to +45 points:
+15 · Publishes its own LAWP (/.well-known/lawp.json)
Publish your starter lawp.json at /.well-known/lawp.json. WordPress: install the Actuent plugin. Cloudflare: use the one-click Worker.
+15 · Actions agents can execute
Give an action an endpoint on your domain so agents can do it for the user, not just link to it. See LAWP Actions.
+15 · Business details (address, hours, phone)
Add schema.org business data to your homepage (the starter snippet). Google uses it too.
Starter lawp.json for easypost.com
Made from what Actuent already knows. Edit it, then publish it at https://easypost.com/.well-known/lawp.json. Check it with the LAWP Checker, or edit it in the LAWP Generator.
{
  "lawp_version": "0.3",
  "domain": "easypost.com",
  "name": "EasyPost",
  "language": "en",
  "pages": {
    "/": {
      "title": "The Simple Shipping API - EasyPost",
      "content": "EasyPost's best-in-class Shipping APIs provide end-to-end flexibility and more control over parcel shipping and logistics processes."
    },
    "/nexus": {
      "title": "EasyPost Nexus",
      "content": "No-code, U.S.-only platform for SMB and lower mid-market sellers with no engineering resources. Currently in Beta."
    },
    "/products/forge": {
      "title": "EasyPost Forge",
      "content": "White-label platform for marketplaces, 3PLs, and commerce platforms embedding EasyPost's shipping capabilities under their own brand."
    },
    "/products/guard": {
      "title": "EasyPost Guard",
      "content": "Protection suite covering the Insurance API, USPS Claims Automation, FedEx Claims, and shopper-facing Purchase Protection."
    },
    "/products/suite/": {
      "title": "EasyPost Suite",
      "content": "Core shipping API platform for label creation, rate shopping across 100+ carriers, tracking, and address verification. Includes Wallet Carriers with pre-negotiated rates up to 88% off retail."
    },
    "/products/luma-ai/": {
      "title": "Luma AI",
      "content": "EasyPost's AI product line trained on 1B+ historic shipments. Includes Insights (analytics and simulation), Advisor (conversational shipping guidance), and Select (automated carrier selection and real-time rate shopping)."
    },
    "/products/globalship": {
      "title": "EasyPost GlobalShip",
      "content": "Enterprise-grade multi-carrier shipping platform for upper mid-market and enterprise shippers, with a dedicated pharmacy and life sciences vertical."
    },
    "/products/luma-ai/select/": {
      "title": "Luma AI Select",
      "content": "Automated carrier and service-level selection applied at the moment of label creation."
    },
    "/products/luma-ai/advisor/": {
      "title": "Luma AI Advisor",
      "content": "Shipping-native LLM that answers questions about costs, carrier mix, delivery performance, and margins using a shipper's own data."
    },
    "/products/luma-ai/insights/": {
      "title": "Luma AI Insights",
      "content": "Real-time analytics, historical benchmarking, and simulation across shipping cost, service, and delivery performance."
    },
    "/products/luma-ai/simulator/": {
      "title": "Luma AI Savings Estimator and Simulator",
      "content": "Two free savings evaluations. The Savings Estimator returns a directional benchmark by email from a short profile questionnaire, with no account required. The Simulator is a full package-level analysis run by the EasyPost team from a submitted PLD file."
    }
  },
  "actions": [
    {
      "id": "shop",
      "name": "Shop products",
      "input": {
        "type": "text",
        "required": false
      },
      "intent": [
        "shop",
        "buy",
        "products",
        "store",
        "catalog"
      ],
      "description": "Browse and buy products"
    },
    {
      "id": "view_pricing",
      "name": "View pricing",
      "input": {
        "type": "text",
        "required": false
      },
      "intent": [
        "pricing",
        "prices",
        "plans",
        "cost",
        "how much"
      ],
      "description": "See plans and prices"
    },
    {
      "id": "sign_up",
      "name": "Sign up",
      "input": {
        "type": "text",
        "required": false
      },
      "intent": [
        "sign up",
        "register",
        "join",
        "create account",
        "get started"
      ],
      "description": "Create an account"
    },
    {
      "id": "sign_in",
      "name": "Sign in",
      "input": {
        "type": "text",
        "required": false
      },
      "intent": [
        "sign in",
        "log in",
        "login",
        "account"
      ],
      "description": "Log in to an account"
    },
    {
      "id": "track_order",
      "name": "Track order",
      "input": {
        "type": "text",
        "required": false
      },
      "intent": [
        "track order",
        "order status",
        "delivery",
        "shipping"
      ],
      "description": "Check the status of an order"
    },
    {
      "id": "get_support",
      "name": "Get help",
      "input": {
        "type": "text",
        "required": false
      },
      "intent": [
        "help",
        "support",
        "faq",
        "customer service"
      ],
      "description": "Help centre, FAQs and support"
    },
    {
      "id": "contact",
      "name": "Contact",
      "description": "Send a message to EasyPost",
      "intent": [
        "contact",
        "message",
        "email",
        "get in touch"
      ],
      "input": {
        "type": "object",
        "required": true,
        "fields": [
          {
            "name": "name",
            "type": "string",
            "required": true
          },
          {
            "name": "email",
            "type": "email",
            "required": true
          },
          {
            "name": "message",
            "type": "string",
            "required": true
          }
        ]
      }
    }
  ]
}
Starter schema.org snippet
Replace the example values, then paste into your homepage's <head>.
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "name": "EasyPost",
  "url": "https://easypost.com",
  "telephone": "+00 0000 0000",
  "priceRange": "€€",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "Street 1",
    "postalCode": "0000",
    "addressLocality": "City",
    "addressCountry": "DK"
  },
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": [
        "Monday",
        "Tuesday",
        "Wednesday",
        "Thursday",
        "Friday"
      ],
      "opens": "09:00",
      "closes": "17:00"
    }
  ]
}
</script>

What AI agents can do here

Shop products
Browse and buy products
shopbuyproductsstorecatalog
View pricing
See plans and prices
pricingpricesplanscosthow much
Sign up
Create an account
sign upregisterjoincreate accountget started
Sign in
Log in to an account
sign inlog inloginaccount
Track order
Check the status of an order
track orderorder statusdeliveryshipping
Get help
Help centre, FAQs and support
helpsupportfaqcustomer service

Pages

The Simple Shipping API - EasyPost /
EasyPost's best-in-class Shipping APIs provide end-to-end flexibility and more control over parcel shipping and logistics processes.
EasyPost Nexus /nexus
No-code, U.S.-only platform for SMB and lower mid-market sellers with no engineering resources. Currently in Beta.
EasyPost Forge /products/forge
White-label platform for marketplaces, 3PLs, and commerce platforms embedding EasyPost's shipping capabilities under their own brand.
EasyPost Guard /products/guard
Protection suite covering the Insurance API, USPS Claims Automation, FedEx Claims, and shopper-facing Purchase Protection.
EasyPost Suite /products/suite/
Core shipping API platform for label creation, rate shopping across 100+ carriers, tracking, and address verification. Includes Wallet Carriers with pre-negotiated rates up to 88% off retail.
Luma AI /products/luma-ai/
EasyPost's AI product line trained on 1B+ historic shipments. Includes Insights (analytics and simulation), Advisor (conversational shipping guidance), and Select (automated carrier selection and real-time rate shopping).
EasyPost GlobalShip /products/globalship
Enterprise-grade multi-carrier shipping platform for upper mid-market and enterprise shippers, with a dedicated pharmacy and life sciences vertical.
Luma AI Select /products/luma-ai/select/
Automated carrier and service-level selection applied at the moment of label creation.
Luma AI Advisor /products/luma-ai/advisor/
Shipping-native LLM that answers questions about costs, carrier mix, delivery performance, and margins using a shipper's own data.
Luma AI Insights /products/luma-ai/insights/
Real-time analytics, historical benchmarking, and simulation across shipping cost, service, and delivery performance.
Luma AI Savings Estimator and Simulator /products/luma-ai/simulator/
Two free savings evaluations. The Savings Estimator returns a directional benchmark by email from a short profile questionnaire, with no account required. The Simulator is a full package-level analysis run by the EasyPost team from a submitted PLD file.

For AI agents

Get this site as structured JSON:
GET https://api.actuent.ai/api/search?q=easypost.com
Or connect Actuent to ChatGPT or Claude: https://agents.actuent.ai/api/mcp
Last updated 26 Sep 2026

Is this your site?

Claim easypost.com to edit what AI agents see, make your actions executable, and show your score:
Claim this site →   WordPress, Cloudflare & Shopify →
Show your score: <script src="https://api.actuent.ai/badge.js" data-domain="easypost.com" async></script> or the image https://api.actuent.ai/badge.svg?domain=easypost.com&style=card

Actuent is a search engine for AI agents, made by localilabs. Data is generated automatically from public web content and may be incomplete.