# SuVerse Logistics — Get Load Current Position

> SuVerse Logistics — Get Load Current Position is a paid API for AI agents from api.suverse.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns the current tracked position of a freight load identified by its load number

## Facts

- Endpoint: POST https://api.suverse.io/v1/freight/get_load_position
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-logistics-get-load-current-position-cf190bad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h1aIGE9elY3XPwiLIfHr_

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability suverse-logistics-get-load-current-position-cf190bad -d '<json body>'
```

Example prompt: Where is load number TRK-482910 right now? Can you pull its current position from SuVerse?

## When to prefer this

Use this endpoint when you need the current real-time position of a specific freight load and have its load number. It is ideal for point-in-time location lookups within the SuVerse logistics platform. For historical GPS trip data and analytics over a journey, prefer the freight.trip_telematics sibling endpoint instead. Best suited for dispatchers, brokers, or agents needing a quick location check on a single load.

## Known failure modes

- Load number not found or invalid — endpoint returns an error indicating the load does not exist
- Load has no active tracking data — may return empty or null position if tracking has not started or has ended
- Malformed loadNumber input — missing or incorrectly formatted load number returns a validation error
- Payment failure — x402 payment of $0.02 USDC not fulfilled, resulting in 402 Payment Required response
- Service unavailability — API unreachable or upstream GPS provider down

## How this service works

SuVerse Logistics — get a tracked load's current position (logistics.get_load_position)

## Output

Returns the current geographic position and tracking status of the specified load, including location data (likely coordinates or address) and potentially movement or status details for the active freight load

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "loadNumber": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-logistics-get-load-current-position-cf190bad/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.suverse.io](https://www.zero.xyz/host/api.suverse.io/llms.txt)
