G GATH Developers
API access for rates, orders, and service discovery
Endpoints

Current production endpoint map in the same workspace language as the rest of the stack.

The table below reflects routes that are either verifiably present or method-advertised on the live namespace.

Route map

Route Method Purpose
/wp-json/gath/v1/services GET Service discovery.
/wp-json/gath/v1/rates/quote POST Create a single quote request.
/wp-json/gath/v1/rates/bulk-quote POST Create a batch quote request.
/wp-json/gath/v1/orders POST Create an order.
/wp-json/gath/v1/orders/:id GET Fetch order details.
/wp-json/gath/v1/orders/:id/status PUT Update order status.

Method behavior note

A plain unauthenticated GET to routes like /rates/quote or /orders may respond with rest_no_route. That usually means the route expects a different method such as POST rather than indicating the route is missing entirely.

Testing tip Use OPTIONS or the documented method when verifying a route. A mismatched HTTP verb can look like a missing endpoint.