dba
Showing 250 of 250 dba products:
There was an error
If you believe this is incorrect, please contact us at [email protected].
There was an error
If you believe this is incorrect, please contact us at [email protected].
The Torqued FWS webservice (API) is a REST interface running over HTTPS, protected by a unique token for each dealer. Responses are in JSON format with HTTP return and error codes as applicable. To get set up, users must first be a dealer through Torqued Distribution. Once enabled, dealers can generate a unique token via the settings on their dealer console login.
All webservice calls are made to https://fws.torqued.io as GET calls with the following headers:
Accept: application/json
Authorization: Bearer <your token>
Gets the available brands including the SKU prefix with which all product SKUs of the brand start with. For example, all AeroCatch product SKUs start with “AER-“.
None
[
{
"name": "AEM Electronics",
"prefix": "AEM"
},
{
"name": "AeroCatch",
"prefix": "AER"
},
...
]
Gets details of a brand including logo image links and all available product SKUs for the brand.
{
"name": "Nuke Performance",
"prefix": "NUK",
"logo_url": "https://www.torqued.io/wp-content/uploads/brands/nuke_performance_200.png",
"logo_large_url": "https://www.torqued.io/wp-content/uploads/brands/nuke_performance_orig.png",
"products": [
"NUK-15001201",
"NUK-15001202",
...
]
}
Gets product SKUs which start with the requested search string, which is a brand prefix such as “MOM”.
[
"NUK-15001201",
"NUK-15001202",
...
]
Gets inventory availability for the product SKUs beginning with search string. For example, using NUK-150 will retrieve NUK-15001201, NUK-15001202, etc. This API also allows a wildcard “*” as the search term to get all inventory, though we ask that you fetch this only once a day if possible. For differential updates, see the /products/updated/<since> endpoint.
Looking at the example below, you will notice total and available is returned. The difference is the physical on hand vs what is available for shipment now. The total field matches the sume of the available in the location section, including any stock with the manufacturer.
{
"NUK-15001201": {
"total": 3,
"available": 2,
"locations": [
{
"name": "South SF, CA",
"country": "US",
"postal_code": "94080",
"available": 3
}
],
},
"NUK-15001202": {
"total": 7,
"available": 5,
"locations": [
{
"name": "South SF, CA",
"country": "US",
"postal_code": "94080",
"available": 3
},
{
"name": "Manufacturer",
"country": "US",
"available": 4
}
],
},
...
}
Gets products which have had their inventory levels updated since the requested date and time. All dates and times are in UTC timezone.
{
"NUK-15001201": 3,
"NUK-15001202": 11,
...
}
Gets pricing for the product SKUs beginning with search string. For example, using NUK-150 will retrieve NUK-15001201, NUK-15001202, etc.
{
"NUK-15001201": {
"currency": "USD",
"retail": "383.89",
"map": "383.89",
"cost": "287.92"
},
"NUK-15001202": {
"currency": "USD",
"retail": "383.89",
"map": "383.89",
"cost": "287.92"
},
...
}
Gets details of a single product SKU including description, images, dimensions and inventory.
Looking at the example below, you will notice total and available is returned in the inventory section. The difference is the physical on hand vs what is available for shipment now. The total field matches the sume of the available in the location section, including any stock with the manufacturer.
{
"sku": "NUK-15001201",
"name": "Nuke Performance Fuel Surge Tank 3.0 Liter Single or Dual Deatschwerks",
"brand": "Nuke Performance",
"manufacturer": "Nuke Performance",
"manufacturer_part_number": "150-01-201",
"description_short": "CNC machined from 6063 aluminum alloy 3 liter capacity 3/4 UNF ports with 5x AN8 fittings included Deatschwerks 200 / 300 / 400 version",
"description": "The Nuke Performance 3 liter fuel surge tank can be run in a dual or single internal pump setup. With this tank you minimize the risk of fuel starvation when running at low fuel levels and where the fuel system can't cope with the extremely hard driving such as drifting, drag racing and track days. By generating higher g forces, fuel can be pushed to one side or sloshed around too much causing starvation to the high pressure pump that supplies the fuel rail. This is a potentially catastrophic situation, particularly in turbo applications, but also on naturally aspirated engines. With a high quality fuel surge tank like this designed for use with top tier pumps, fuel starvation should never happen. As is the hallmark of Nuke Performance products, this tank is designed and manufactured to handle extreme amounts of power. Designed to stand up to the destructive properties of alcohol fuels, including methanol and ethanol. For use on turbo-charged, super-charged and naturally aspirated engine applications. Delivered with stainless-steel mounting plate for easy mounting and 5x 3/4 AN8 fittings for all the top cover connections and 1x 3/4 plug if you choose to use it for a single fuel pump. Any 3/4 AN6-AN10 fitting can be used if desired. No fuel pumps are included. This version is compatible with one or two Deatschwerks 200 / 300 / 400 fuel pumps.",
"image": "https://www.torqued.io/wp-content/uploads/images/product/400/full/dj6ipEB7am.jpg",
"additional_images": [
"Bdxtwqz1bF.jpg"
],
"pricing": {
"currency": "USD",
"retail": "383.89",
"map": "383.89",
"cost": "307.11"
},
"dimensions": {
"units": "in",
"length": "5.8",
"width": "10.0",
"height": "5.8"
},
"weight": {
"units": "lbs",
"weight": "6.5"
},
"inventory": {
"total": 3,
"available": 2,
"locations": [
{
"name": "South SF, CA",
"country": "US",
"postal_code": "94080",
"available": 3
}
],
},
"shipping_estimate": {
"US": {
"cost": 7.65,
"currency": "USD"
}
}
}
Gets the available inventory for products whose inventory has changed since the provided date and time. All dates and times are in UTC timezone.
[
"NUK-15001201",
"NUK-15001202",
...
]
Gets the orders placed in reverse chronological order in all order statuses, up to 50 at a time. Returns order id, any purchase order number (or other reference number) entered by the dealer when the order was placed, the status of the order and when it was last updated.
Standard values for status are unpaid, sent_to_warehouse, warehouse_ack, picked, packed and complete. Possible, but unlikely additional values are canceled, fraud and hold.
[
{
"id": 254,
"purchase_order_number": "1234",
"status": "sent_to_warehouse",
"last_updated": "2019-07-07 00:32:06"
},
{
"id": 253,
"purchase_order_number": null,
"status": "complete",
"last_updated": "2019-08-20 05:25:01"
},
...
]
Gets the single order specified by the id. Returns any purchase order number (or other reference number) entered by the dealer when the order was placed, the status of the order, shipping address, cost breakdown, the items which were ordered, tracking information and when the order was last updated.
Standard values for status are unpaid, sent_to_warehouse, warehouse_ack, picked, packed and complete. Possible, but unlikely additional values are canceled, fraud and hold.
All cost information is at the cost charged to the dealer, not the retail cost of the parts in the order.
{
"id": 253,
"purchase_order_number": null,
"status": "complete",
"ship_to": {
"firstname": "Jennifer",
"lastname": "Mustermann",
"company": null,
"address": "2A Wellington St",
"address2": "Apt 4",
"address3": null,
"city": "Boston",
"state": "MA",
"postal_code": "02118",
"country": "US"
"phone": "617-555-1212"
},
"cost": {
"currency": "USD",
"total": "323.91",
"shipping": "16.80",
"tax": "0.00"
},
"items": [
{
"sku": "NUK-15001201",
"name": "Nuke Performance Fuel Surge Tank 3.0 Liter Single or Dual Deatschwerks",
"quantity": 1,
"price": "307.11"
}
],
"shipping_method": "ups-ups_ground",
"tracking": [
{
"carrier": "ups",
"tracking": "1Z03W6270375346728"
}
],
"last_updated": "2019-08-20 05:25:01"
}
Creates a new order for the dealer. This reserves the parts in the Torqued Distribution warehouse network and puts the order in an unpaid state. Dealers can then complete the order, including shipping and payment, on the dealer console.
All fields in the sample input below are required except, purchase_order_number, ship_to.company, ship_to.address2, ship_to.address3 and shipping_method.
shipping_method should be set to a valid shipping service as shown in the table below
This endpoint returns HTTP 200 only when an order is created successfully. HTTP 4XX response codes are provided for all errors.
{
"purchase_order_number": "ABC123",
"ship_to": {
"firstname": "Bob",
"lastname": "Miller",
"company": "BM Enterprises",
"address": "15 Main St",
"address2": "Suite 2",
"city": "Chicago",
"state": "IL",
"postal_code": "60603",
"country": "US",
"phone": "312-555-1212"
},
"items": [
{
"sku": "TIL-B6S-C",
"quantity": 1
},
{
"sku": "NUK-20001202",
"quantity": 2
}
],
"shipping_method": "Ground"
}
{
"id": 265,
"purchase_order_number": "ABC123",
"status": "unpaid"
}
Below are the valid shipping services to send for new orders and which are returned as responses. A specific service can be requested for UPS, USPS and DHL by setting the shipping_method field when creating an order. Alternatively, the ground and intl_air shipping method types can be used to specify the lowest cost option available for ground and international shipment, respectively.
For any account set up for payment prior to fulfillment and not on terms, the shipping service can also be edited when an order is paid for prior to shipping.
| Service name | Shipping method code |
|---|---|
| Ground | ground |
| International Air | intl_air |
| UPS Ground | ups-ups_ground |
| UPS Next Day Air | ups-ups_next_day_air |
| UPS Second Day Air | ups-ups_second_day_air |
| UPS Next Day Air Early AM | ups-ups_next_day_air_early_am |
| UPS Next Day Air Saver | ups-ups_next_day_air_saver |
| UPS Three Day Select | ups-ups_three_day_select |
| USPS Parcel Select | usps-usps_parcel_select |
| USPS First Class | usps-usps_first_class |
| USPS Priority | usps-usps_priority |
| USPS Express | usps-usps_express |
| DHL Express Worldwide | dhl-dhl_express_worldwide |
Torqued Distribution also provides a set of webhooks to push updates from Torqued to a dealer’s servers. For example, a dealer may want to subscribe to order updates via webhook instead of polling Torqued FWS continuously.
To set up, a second token unique from the webservice needs to be generated on the dealer’s settings page and URLs need to be set up for the endpoint where the dealer wishes to receive the update. These are also in JSON format and test messages can be sent from the console to verify and endpoint is working correctly.
There was an error
If you believe this is incorrect, please contact us at [email protected].
There was an error
If you believe this is incorrect, please contact us at [email protected].
Order by:
There was an error
If you believe this is incorrect, please contact us at [email protected].
There was an error
If you believe this is incorrect, please contact us at [email protected].
There was an error
If you believe this is incorrect, please contact us at [email protected].


$160.00
Ultra lightweight aluminum construction. Black suede finish. Flat, no dish.
SKU #: DRI-127S
Manufacturer Part #: DR000127S

DRIVEN’s Quarter Midget steering wheel is made using ultra lightweight aluminum and weighs only 1.45 lbs. The suede finish features finger indentation for added driver comfort. With a flat top for greater visibility and a flat bottom for easer entry/exit from the car, it is a very driver comfort-focused wheel. The outside diameter is 10.75″. There is no dish on this wheel – it mounts flat with the pre-drilled 3-bolt pattern.
| Diameter | 270mm | See more like this |
|---|---|---|
| Dish | None | See more like this |
| Bolt Pattern | 3-bolt | See more like this |
| Horn Button | No | See more like this |
| Made by | DRIVEN Motorsport |
|---|---|
| Manufacturer Part # | DR000127S |
| Weight | 1.45 lbs (0.7 kg) |
| Height | 1″ (2.5 cm) |
| Width | 10.75″ (27.3 cm) |
| Length | 10.75″ (27.3 cm) |
| CARB compliant | Yes (see note below) |
Size and weight of different configurations may vary. For exact product weight and dimensions, please refer to the manufacturer’s spec sheets or sizing sheets included in the description above or contact us.
CARB and EPA Emissions Statement: Based on the information provided to us by manufacturers and our own knowledge, we do the best we can to determine the CARB and emissions legality of the parts we sell. Please do your own research with the manufacturer to ensure that this part is legal for use in your state on the car you will be installing it on. If you believe that this part is incorrectly listed, please let us know at [email protected]. Parts which are not legal for use on emissions controlled vehicles in California and states which follow California CARB rules will require an affidavit to be signed by the customer certifying the part’s use on a vehicle which is not emissions controlled.
There was an error
The error has been logged. Please contact us at [email protected] and we’d be happy to assist you further.


$160.00
Lightweight aluminum core versatile steering wheel. Suede finish with red stitching & centering stripe. Flat with no dish.
SKU #: DRI-133S
Manufacturer Part #: DR000133S

The DRIVEN 12.9″ flat steering wheel features an ultra-lightweight aluminum core, finger indentation for added driver comfort, durable red stitching and a laser-engraved Driven logo on the spoke. Used in the British Touring Car Championships, Red Bull Rally Cross and by thousands of amateur racers around the globe, this is a very popular and highly versatile steering wheel.
At 330mm outside diameter and weighing only 1.95 lbs, this racer’s wheel has a black suede finish with a red centering stripe. It is a flat wheel with no dish.
| Diameter | 330mm | See more like this |
|---|---|---|
| Dish | None | See more like this |
| Bolt Pattern | 6 x 70mm | See more like this |
| Horn Button | No | See more like this |
| Made by | DRIVEN Motorsport |
|---|---|
| Manufacturer Part # | DR000133S |
| GTIN | 0190300852017 |
| Weight | 1.95 lbs (0.9 kg) |
| Height | 1.5″ (3.8 cm) |
| Width | 12.9″ (32.8 cm) |
| Length | 12.9″ (32.8 cm) |
Size and weight of different configurations may vary. For exact product weight and dimensions, please refer to the manufacturer’s spec sheets or sizing sheets included in the description above or contact us at [email protected].
There was an error
The error has been logged. Please contact us at [email protected] and we’d be happy to assist you further.


$160.00
Pro drifter favorite with 3.5″ / 89mm dish and 13.5″ / 343 mm diameter. Red accent strip and centering strip on black suede.
SKU #: DRI-890135S
Manufacturer Part #: DR890135S

The DRIVEN Motorsport 13.5″ deep dish steering wheel is a favorite amongst the drift community. It is made using ultra-lightweight aluminum and features an embroidered Driven logo complemented by durable red stitching, and a laser-engraved Driven logo on the spoke.
This deep dish steering wheel is currently used by Formula Drift Pro drivers Mats Baribeau, Nate Hamilton, Kyle Mohan, Alex Hellibrun, Andy Gray and more! Countless more pro-am and grassroots drifters around the globe get sideways using the Driven deep dish steering wheel.
It features a lightweight aluminum core for a total weight of 2.35 lbs. The outside diameter is 13.5 inches / 343 mm and it has a 3.5″ / 89 mm dish. The black suede finish is accented by red stitching and a matching red centering stripe at the top.
| Diameter | 343mm | See more like this |
|---|---|---|
| Dish | 89mm | See more like this |
| Bolt Pattern | 6 x 70mm | See more like this |
| Horn Button | No | See more like this |
| Made by | DRIVEN Motorsport |
|---|---|
| Manufacturer Part # | DR890135S |
| GTIN | 0190300852048 |
| Weight | 2.35 lbs (1.1 kg) |
| Height | 3.5″ (8.9 cm) |
| Width | 13.5″ (34.3 cm) |
| Length | 13.5″ (34.3 cm) |
Size and weight of different configurations may vary. For exact product weight and dimensions, please refer to the manufacturer’s spec sheets or sizing sheets included in the description above or contact us at [email protected].
There was an error
If you believe this is incorrect, please contact us at [email protected].