POST api/Pcb/PcbQuotation
PCB quote interface
Request Information
URI Parameters
None.
Body Parameters
Request Parameters
PcbQuotationRequestName | Description | Type | Additional information |
---|---|---|---|
Country |
Country |
string |
None. |
CountryCode |
Country Code |
string |
None. |
ShipType |
Logistics Company |
ShipType |
None. |
Postalcode |
Postal code (Multiple ones separated by ',' such as '123456' or '123456, 123457') |
string |
None. |
City |
City |
string |
None. |
Length |
board length (mm) |
decimal number |
Required |
Width |
board width (mm) |
decimal number |
Required |
Layers |
board layer. 1, 2, 4, 6, 8, 10, 12, 14 |
integer |
Required |
Qty |
quantity 5,10,15..... |
integer |
Required |
Thickness |
thickness 0.2, 0.3, 0.4, 0.6, 0.8, 1.0, 1.2, 1.6, 2.0, 2.4, 2.6, 2.8, 3.0, 3.2 |
decimal number |
Required |
Material |
"FR-4", "Aluminum board", "Rigid-Flex", "Rogers", "HDI", "Copper" |
string |
Required |
DesignInPanel |
Different Designin Panel |
integer |
Required |
MinTrackSpacing |
"3/3mil", "4/4mil", "5/5mil", "6/6mil", "8/8mil" ↑ |
string |
Required |
MinHoleSize |
0.15, 0.2, 0.25, 0.3, 0.8, 1.0, -1 ↑ (mm) |
decimal number |
Required |
SolderMask |
"Green", "Red", "Yellow", "Blue", "White", "Black", "Purple", "Matt black", "Matt green", "None" |
string |
Required |
Silkscreen |
"White", "Black", "None" |
string |
Required |
SurfaceFinish |
"HASL with lead", "HASL lead free", "Immersion gold", "Hard Gold", "OSP", "Immersion Silver", "Immersion Tin", "ENEPIG", "None" |
string |
Required |
ViaProcess |
"Tenting vias", "Plugged vias", "Vias not covered" |
string |
Required |
FinishedCopper |
"0 oz Cu", "1 oz Cu", "2 oz Cu", "3 oz Cu", "4 oz Cu", "5 oz Cu", "6 oz Cu", "7 oz Cu", "8 oz Cu", "9 oz Cu", "10 oz Cu", "11 oz Cu", "12 oz Cu", "13 oz Cu" |
string |
Required |
FR4Tg |
"TG130", "TG150", "TG170", "S1000H TG150" , "S1000-2M TG170" |
string |
Required |
Goldfingers |
"Yes", "No" |
string |
Required |
Request Formats
application/json, text/json
{ "Country": "UNITED STATES OF AMERICA", "CountryCode": "US", "ShipType": 1, "Postalcode": "10002", "City": "NEW YORK", "Length": 15.0, "Width": 20.0, "Layers": 2, "Qty": 10, "Thickness": 1.6, "Material": "FR-4", "DesignInPanel": 1, "MinTrackSpacing": "6/6mil", "MinHoleSize": 0.3, "SolderMask": "Green", "Silkscreen": "White", "SurfaceFinish": "HASL with lead", "ViaProcess": "Tenting vias", "FinishedCopper": "1 oz Cu", "FR4Tg": "TG150", "Goldfingers": "Yes" }
Response Information
Resource Description
PcbQuotationResponseName | Description | Type | Additional information |
---|---|---|---|
priceList |
price item |
Collection of DataPriceItem |
None. |
Shipping |
Shipping information |
ShippingModel |
None. |
Status |
Request processing results ('ok' or 'error') |
string |
None. |
ErrorText |
Error Description ( Empty when request processing successfully ) |
string |
None. |
Code |
状态码 |
integer |
None. |
Response Formats
application/json, text/json
{ "priceList": [ { "BuildDays": 1, "BuildText": "sample string 2", "Express": true, "Price": 4.0, "Standard": true }, { "BuildDays": 1, "BuildText": "sample string 2", "Express": true, "Price": 4.0, "Standard": true } ], "Shipping": { "ShipCost": 1.0, "ShipDays": "sample string 2", "Weight": 3.1, "IsRas": true }, "Status": "sample string 1", "ErrorText": "sample string 2", "Code": 3 }