🌐
GitHub
github.com › clooney › fedex-tracking-api
GitHub - clooney/fedex-tracking-api: Fedex tracking API and webhook make it easy to integrate Fedex tracking function into your own project. · GitHub
TrackingMore's API is compatible with seven programming languages and comes with detailed documentation to aid in the setup and usage, simplifying the integration procedure. Unified real-time tracking information for FedEx shipments.
Author   clooney
🌐
GitHub
github.com › WhatArmy › FedexRest
GitHub - WhatArmy/FedexRest · GitHub
stdClass Object ( [transactionId] ... 794699999999 [serviceType] => FEDEX_GROUND [shipDatestamp] => 2023-01-22 [serviceName] => FedEx Ground® [pieceResponses] => Array ( [0] => stdClass Object ( [masterTrackingNumber] => 794699999999 ...
Starred by 26 users
Forked by 30 users
Languages   PHP
🌐
GitHub
github.com › topics › fedex-api
fedex-api · GitHub Topics · GitHub
Self-hosted delivery tracker built in Go — monitors Gmail via Google OAuth2, extracts tracking numbers from emails, queries UPS/FedEx/USPS/DHL APIs, and pushes real-time shipping updates to Discord.
🌐
GitHub
github.com › maxirus › fedex-tracking-api-wrapper
GitHub - maxirus/fedex-tracking-api-wrapper: FedEx API wrapper to simplify the Tracking service. · GitHub
$tracking = new FedEx\TrackService\Track($accessKey, $password, $acctNum, $meterNum); try { $shipment = $tracking->getByTrackingId('TRACKING NUMBER'); var_dump($shipment); } catch (Exception $e) { var_dump($e); }
Starred by 17 users
Forked by 9 users
Languages   PHP
🌐
GitHub
github.com › Daylily-Informatics › fedex_tracking_day
GitHub - Daylily-Informatics/fedex_tracking_day: Python Module Interfacing w/The FedEx Tracking API · GitHub
--- api_url: https://apis.fedex.com/oauth/token client_id: .................................. client_secret: ................................ Requires python >= 3.10 & pip. ... From the cloned repository directory. Given a VALIDbc, one which has been Delivered. python fedex_tracking_day/fedex_track.py VALIDbc # <__main__.FedexTrack object at 0x1030f70e0> # {'Pickup_dt': '2023-06-26T17:12:00+00:00', 'Delivery_dt': '2023-06-27T11:34:00+00:00', 'Tender_dt': '', 'Ship_dt': '2023-06-26T00:00:00-06:00', 'Transit_Time_sec': '', 'Delivery_Status': 'Delivered', 'Origin_state': 'CA', 'Destination_state': 'CA', 'Delivery_weekday': 'Tuesday', 'Ship_weekday': ''} # Delivery Status For VALIDbc ...
Author   Daylily-Informatics
🌐
GitHub
github.com › topics › fedex
fedex · GitHub Topics · GitHub
UPSTracker is a Node.js service that fetches real-time order status from UPS using tracking numbers. It handles cookie management and API requests to UPS’s platform, providing detailed tracking information for your shipments. ... Fedex tracking API and webhook make it easy to integrate Fedex ...
🌐
GitHub
github.com › jzempel › fedex
GitHub - jzempel/fedex: FedEx API for Python
The API layout essentially associates one service per WSDL. You could easily add additional services (i.e. PackageMovement, Pickup, ReturnTag, etc.) using the same approach by extending fedex.services.commons.BaseService. The root FedexService methods are: get_addresses Get a list of validated shipping addresses. get_rates Get available rates for a given shipment. get_shipment Process a shipment. get_tracking Get tracking information for a given package ID.
Starred by 25 users
Forked by 58 users
Languages   Python 100.0% | Python 100.0%
Find elsewhere
🌐
GitHub
github.com › shiftlab › fedex
GitHub - shiftlab/fedex: Forked fedex API Gem · GitHub
fedex.label( :filename => file_name, :shipper => shipper, :recipient => recipient, :packages => packages, :service_type => service_type, :shipping_details => shipping_details, :shipping_charges_payment => shipping_charges_payment, :customs_clearance_detail => customs_clearance_detail, :mps => { :master_tracking_id => {:tracking_id_type => 'FEDEX', :tracking_number =>tracking_number}, :package_count => package_count, :total_weight => { :value => total_weight, :units => 'KG' } :sequence_number => 'n' } )
Author   shiftlab
🌐
GitHub
github.com › dawit-kiros › Fedex-Track-API
GitHub - dawit-kiros/Fedex-Track-API · GitHub
Tracking Endpoint: https://apis-sandbox.fedex.com/track/v1/trackingnumbers
Author   dawit-kiros
🌐
GitHub
github.com › ekoca › Fedex-Tracking-API
GitHub - ekoca/Fedex-Tracking-API: Track your shipment from FEDEX
November 5, 2016 - Track your shipment from FEDEX. Contribute to ekoca/Fedex-Tracking-API development by creating an account on GitHub.
Author   ekoca
🌐
GitHub
github.com › piyushs02 › fedex-tracking-soap-api
GitHub - piyushs02/fedex-tracking-soap-api: Tracking Soap Api for Fedex
$tracking = new FedEx\TrackService\Track($accessKey, $password, $acctNum, $meterNum); try { $shipment = $tracking->getByTrackingId('TRACKING NUMBER'); header('Content-Type: application/json'); echo json_encode($shipment); } catch (Exception ...
Author   piyushs02
🌐
GitHub
github.com › tcolar › fedex
GitHub - tcolar/fedex: Some Fedex API support for GoLang (Bare minimum for tracking lookup)
Fedex API's are one of those WDSL SOAP monster documented in a gigantic PDF file, don't we all love those. I did not bother dealing with all of that here and only created what I needed so far. I might add more over time but for now it provides: Retrieving Tracking info by either: Tracking number, PO number, or shipper reference number (~order ID) The data is unmarshalled from SOAP into Go structures for more practical usage.
Starred by 11 users
Forked by 5 users
Languages   Go 100.0% | Go 100.0%
🌐
GitHub
github.com › clooney › fedex-tracking-api › blob › master › fedex-tracking-api-java.md
fedex-tracking-api/fedex-tracking-api-java.md at master · clooney/fedex-tracking-api
Give a name to your API key, and click "Save" . Then, start to track your FedEx shipments. ... package com.trackingmore.example.fedex; import com.trackingmore.TrackingMore; import com.trackingmore.exception.TrackingMoreException; import com.trackingmore.model.TrackingMoreResponse; import java.io.IOException; import java.util.List; public class CreateFedExTrackingExample { public static void main(String[] args) { try { String apiKey = "your api key"; TrackingMore trackingMore = new TrackingMore(apiKey); CreateTrackingParams createTrackingParams = new CreateTrackingParams(); createTrackingParams
Author   clooney
🌐
GitHub
github.com › JeremyDunn › php-fedex-api-wrapper › blob › main › examples › track-by-id.php
php-fedex-api-wrapper/examples/track-by-id.php at main · JeremyDunn/php-fedex-api-wrapper
This library provides a fluid interface for constructing requests to the FedEx web service API. - php-fedex-api-wrapper/examples/track-by-id.php at main · JeremyDunn/php-fedex-api-wrapper
Author   JeremyDunn