Optional filter to limit search to specific object types. If not provided, searches across all object types.
MVMNT API (1.0.0)
The MVMNT API enables you to automate freight brokerage workflows by integrating directly with our Transportation Management System.
OAuth 2.0 client credentials flow. See Authentication Guide for details.
Headers:
Content-Type: application/x-www-form-urlencodedBody Parameters:
grant_type=client_credentials
client_id=YOUR_CLIENT_ID
client_secret=YOUR_CLIENT_SECRETcurl -X POST https://api.mvmnt.io/oauth2/token \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "grant_type=client_credentials" \
-d "client_id=YOUR_CLIENT_ID" \
-d "client_secret=YOUR_CLIENT_SECRET"Request
Search across multiple entity types simultaneously (shipments, customers, carriers, users, vendors).
Use Cases:
- Unified search bar for finding any type of record
- Quick lookup by name, ID, or reference number
- Cross-entity discovery
Search Behavior:
- Searches across default searchable fields for each entity type
- Results are sorted by object type priority: SHIPMENT → CUSTOMER → CARRIER → USER → VENDOR
- Within each object type, results are sorted by most recently updated
Prefix Filtering: Use "type:query" syntax to search specific object types:
carrier:acme- searches only carriersshipment:12345- searches only shipmentscustomer:west- searches only customers
IMPORTANT: Eventually Consistent This endpoint queries OpenSearch indices which are updated asynchronously. Changes typically appear within 2 seconds, but this is not guaranteed.
Search query string. Searches across default searchable fields for each entity type.
Supports prefix filtering using "type:query" syntax:
carrier:acme- searches only carriers for "acme"shipment:12345- searches only shipments for "12345"user:john- searches only users for "john"
- Mock serverhttps://docs.mvmnt.io/_mock/apis/openapi/global-search
- Productionhttps://api.mvmnt.io/v1/global-search
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.mvmnt.io/_mock/apis/openapi/global-search \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"query": "acme"
}'Search results
Search results sorted by object type priority: SHIPMENT → CUSTOMER → CARRIER → USER → VENDOR
Client-defined reference identifier if set
Internal entity type name (for backwards compatibility). Prefer using the object field instead.
Primary display text for the result (e.g., name, friendlyId)
{ "data": [ { … }, { … } ], "pagination": { "pageNumber": 1, "pageSize": 20, "totalPages": 3 }, "totalResults": 42 }