{"info":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","description":"<html><head></head><body><h1 id=\"codeclassify-api-barcode-business-code-toolkit\">CodeClassify API — Barcode &amp; Business Code Toolkit</h1>\n<p>Deterministic validation &amp; conversion for the product and business codes you deal with every day: barcode check digits (<strong>GTIN / UPC / EAN / SSCC</strong>), <strong>ISBN</strong> conversion, <strong>IBAN</strong>, <strong>EU VAT</strong>, <strong>ISIN</strong>, <strong>VIN</strong>, <strong>ISO 6346</strong> shipping containers, <strong>US ABA</strong> routing numbers, plus <strong>NAICS / SIC / HS</strong> code lookups and the <strong>SIC ↔ NAICS</strong> crosswalk. Same input, same output, every time — no AI guessing.</p>\n<p><strong>Links</strong></p>\n<ul>\n<li>🌐 Website + 16 free browser tools: <a href=\"https://code-classify.com\">https://code-classify.com</a></li>\n<li>📖 API docs, endpoints &amp; pricing: <a href=\"https://code-classify.com/api/\">https://code-classify.com/api/</a></li>\n</ul>\n<h2 id=\"getting-started\">Getting started</h2>\n<ol>\n<li>Get a free API key at <a href=\"https://code-classify.com/api/\">https://code-classify.com/api/</a></li>\n<li>Set the collection variable <code>api_key</code> to your key (the <code>X-Api-Key</code> header is then sent automatically on every request).</li>\n<li>Send any request in the folders below.</li>\n</ol>\n<p>Most validation endpoints accept a <strong>single value</strong> or a <strong>batch of up to 100</strong> per call. Every successful response is JSON with <code>ok: true</code>; batch endpoints also return <code>count</code>, <code>valid</code> (how many passed) and a per-item <code>results</code> array that echoes each input and, when a check digit is wrong, the expected digit and the corrected code.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"CodeClassify API — Barcode & Business Code Toolkit","slug":"codeclassify-api-barcode-business-code-toolkit"}],"owner":"56392337","collectionId":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","publishedId":"2sBY4HV4X2","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-07-05T05:53:49.000Z"},"item":[{"name":"Barcodes","item":[{"name":"Validate GTIN / UPC / EAN check digit","id":"efe0bb19-04dd-4afd-92df-daa1876d7c5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"codes\": [\"036000291452\", \"4006381333931\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/gtin/validate","description":"<p>Validate the check digit of one or up to 100 barcodes (GTIN-8, UPC-A 12, EAN-13, GTIN-14). Send a single \"code\" or an array \"codes\". Each result echoes the input and, if the check digit is wrong, returns the expected digit and the corrected code. Free browser version: <a href=\"https://code-classify.com/gtin-check-digit/\">https://code-classify.com/gtin-check-digit/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","gtin","validate"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"efe0bb19-04dd-4afd-92df-daa1876d7c5f"},{"name":"Calculate a GTIN check digit","id":"c332e7a8-26fb-470c-8100-08f4b70eca69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": \"03600029145\"\n}","options":{"raw":{"language":"json"}}},"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/gtin/check-digit","description":"<p>Given a barcode WITHOUT its final check digit (7, 11, 12 or 13 digits), compute the missing check digit and return the complete code.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","gtin","check-digit"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"c332e7a8-26fb-470c-8100-08f4b70eca69"},{"name":"Convert UPC-A ↔ EAN-13 and to GTIN-14","id":"6c46a118-1a8c-4ed3-949c-ff7e660c548f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"036000291452\",\n  \"indicator\": \"1\"\n}","options":{"raw":{"language":"json"}}},"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/gtin/convert","description":"<p>Convert between UPC-A (12) and EAN-13 (13) and build the GTIN-14 case/carton code with your chosen packaging indicator (1-8, default 1). The input's check digit is verified first. Free browser version: <a href=\"https://code-classify.com/upc-to-ean/\">https://code-classify.com/upc-to-ean/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","gtin","convert"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"6c46a118-1a8c-4ed3-949c-ff7e660c548f"}],"id":"54e3ca57-165b-45d1-afa7-ff0b9aafba00","_postman_id":"54e3ca57-165b-45d1-afa7-ff0b9aafba00","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}}},{"name":"Books","item":[{"name":"Convert ISBN-10 ↔ ISBN-13","id":"c9d9a911-8321-4774-994f-a26119125f64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"isbn\": \"9780306406157\"\n}","options":{"raw":{"language":"json"}}},"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/isbn/convert","description":"<p>Convert a book ISBN both ways. The check digit is recomputed and validated. 979-prefixed ISBN-13s have no ISBN-10 form (isbn10 is null). Free browser version: <a href=\"https://code-classify.com/isbn-converter/\">https://code-classify.com/isbn-converter/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","isbn","convert"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9d9a911-8321-4774-994f-a26119125f64"}],"id":"879147fb-d5f5-44d4-9d2d-8eac7faf605d","_postman_id":"879147fb-d5f5-44d4-9d2d-8eac7faf605d","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}}},{"name":"Finance","item":[{"name":"Validate IBAN (MOD-97 + country length)","id":"3da897ff-05f7-4bd2-b79f-d6b9ee3fa999","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ibans\": [\"DE89370400440532013000\", \"GB82WEST12345698765432\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/iban/validate","description":"<p>Validate one or up to 100 IBANs with the ISO 13616 MOD-97 checksum and per-country length rules. Send a single \"iban\" or an array \"ibans\". Checksum/structure only — not a registry or account-existence check. Free browser version: <a href=\"https://code-classify.com/iban-checker/\">https://code-classify.com/iban-checker/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","iban","validate"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"3da897ff-05f7-4bd2-b79f-d6b9ee3fa999"},{"name":"Validate EU VAT number format","id":"5c8dece5-16b7-43a1-8e29-d975a91280aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"vats\": [\"IT12345670017\", \"DE811907980\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/vat/validate","description":"<p>Validate the per-country format (and checksum where publicly defined) of one or up to 100 EU VAT numbers. Send \"vat\" or \"vats\". Format only — confirm a number is active via the official VIES service. Free browser version: <a href=\"https://code-classify.com/vat-number-validator/\">https://code-classify.com/vat-number-validator/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","vat","validate"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"5c8dece5-16b7-43a1-8e29-d975a91280aa"},{"name":"Validate Luhn numbers (cards, IMEI)","id":"e83056c2-35b6-4731-a4a0-a00ca6df8bda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"numbers\": [\"4539148803436467\", \"490154203237518\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/luhn/validate","description":"<p>Validate one or up to 100 numbers that use the Luhn (mod-10) algorithm — payment cards, IMEI, and more. Send \"number\" or \"numbers\". When a number fails, the expected check digit is returned. Free browser version: <a href=\"https://code-classify.com/luhn-checker/\">https://code-classify.com/luhn-checker/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","luhn","validate"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"e83056c2-35b6-4731-a4a0-a00ca6df8bda"},{"name":"Validate ISIN (ISO 6166)","id":"6475bbc1-95ad-4349-a085-62adbd1ccfda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"isins\": [\"US0378331005\", \"GB0002634946\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/isin/validate","description":"<p>Validate one or up to 100 securities identifiers with the ISO 6166 check digit (Luhn over the letter-expanded code). Send \"isin\" or \"isins\". Returns the 2-letter country/issuer prefix. Free browser version: <a href=\"https://code-classify.com/isin-validator/\">https://code-classify.com/isin-validator/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","isin","validate"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"6475bbc1-95ad-4349-a085-62adbd1ccfda"},{"name":"Validate US ABA routing number (checksum)","id":"debd5dd8-f799-4ba8-b17f-66ad4e9688b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"numbers\": [\"021000021\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/aba/validate","description":"<p>Validate one or up to 100 US bank routing numbers with the ABA 3-7-1 checksum. Send \"number\" or \"numbers\". Checksum only — bank-name lookup is not provided. Free browser version: <a href=\"https://code-classify.com/routing-number-validator/\">https://code-classify.com/routing-number-validator/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","aba","validate"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"debd5dd8-f799-4ba8-b17f-66ad4e9688b6"}],"id":"31148a1a-0df9-4184-8d28-d0509fd3e19b","_postman_id":"31148a1a-0df9-4184-8d28-d0509fd3e19b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}}},{"name":"Logistics","item":[{"name":"Validate SSCC-18 (GS1 mod-10)","id":"8b225782-ce37-471a-ab94-90c368dda5df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ssccs\": [\"106141411234567897\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/sscc/validate","description":"<p>Validate one or up to 100 SSCC-18 logistics serial shipping container codes with the GS1 mod-10 check digit. Send \"sscc\" or \"ssccs\". When wrong, the expected digit and corrected code are returned. Free browser version: <a href=\"https://code-classify.com/sscc-check-digit-calculator/\">https://code-classify.com/sscc-check-digit-calculator/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","sscc","validate"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"8b225782-ce37-471a-ab94-90c368dda5df"},{"name":"Validate shipping container number (ISO 6346)","id":"5329292a-be60-4980-a1a7-843c60a2eba6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"containers\": [\"CSQU3054383\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/container/validate","description":"<p>Validate one or up to 100 ISO 6346 intermodal container numbers. Send \"container\" or \"containers\". Each result breaks out the owner code, equipment category, serial number and check-digit result. Free browser version: <a href=\"https://code-classify.com/container-number-validator/\">https://code-classify.com/container-number-validator/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","container","validate"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"5329292a-be60-4980-a1a7-843c60a2eba6"}],"id":"ca916c06-8d2d-4324-ad85-70ac1b9c4d01","_postman_id":"ca916c06-8d2d-4324-ad85-70ac1b9c4d01","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}}},{"name":"Vehicles","item":[{"name":"Validate VIN check digit (ISO 3779 / FMVSS 115)","id":"7d49de2c-39d0-4130-a251-d74ae06e2524","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"vins\": [\"1HGCM82633A004352\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/vin/validate","description":"<p>Validate one or up to 100 Vehicle Identification Numbers. Send \"vin\" or \"vins\". The position-9 check digit is mandatory for North-American-market vehicles; genuine European VINs can still fail it, so the expected digit is always returned for reference. Free browser tool + NHTSA decode: <a href=\"https://code-classify.com/vin-validator/\">https://code-classify.com/vin-validator/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","vin","validate"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d49de2c-39d0-4130-a251-d74ae06e2524"}],"id":"f73b938b-67a2-46fb-9cb0-388eac4fcb1e","_postman_id":"f73b938b-67a2-46fb-9cb0-388eac4fcb1e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}}},{"name":"Industry & Trade","item":[{"name":"Search NAICS 2022 industry codes","id":"c3a60b01-166f-47b0-9cb7-b5687c1d6de6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/naics/search?q=software publishers&limit=10","description":"<p>Search the official U.S. Census NAICS 2022 taxonomy by keywords or by a numeric code prefix. Returns matching codes at every hierarchy level (l = number of digits) ranked by relevance. Free browser version: <a href=\"https://code-classify.com/naics-lookup/\">https://code-classify.com/naics-lookup/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","naics","search"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[{"key":"q","value":"software publishers"},{"key":"limit","value":"10"}],"variable":[]}},"response":[],"_postman_id":"c3a60b01-166f-47b0-9cb7-b5687c1d6de6"},{"name":"Search SIC 1987 codes","id":"525bdcbb-4c69-4c18-b0ec-681c325054c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/sic/search?q=prepackaged software&limit=10","description":"<p>Search the legacy U.S. SIC 1987 code list by keywords or numeric prefix. Useful for older filings and datasets still keyed on SIC.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","sic","search"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[{"key":"q","value":"prepackaged software"},{"key":"limit","value":"10"}],"variable":[]}},"response":[],"_postman_id":"525bdcbb-4c69-4c18-b0ec-681c325054c3"},{"name":"SIC ↔ NAICS crosswalk","id":"9919a787-1842-477f-94c2-2045fbe8e30c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/crosswalk/sic-naics?sic=7372","description":"<p>Map codes between systems using the official Census concordance. Provide either \"sic\" (SIC→NAICS) or \"naics\" (NAICS→SIC). Free browser version: <a href=\"https://code-classify.com/sic-to-naics/\">https://code-classify.com/sic-to-naics/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","crosswalk","sic-naics"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[{"key":"sic","value":"7372"}],"variable":[]}},"response":[],"_postman_id":"9919a787-1842-477f-94c2-2045fbe8e30c"},{"name":"Search HS customs codes","id":"73ecb3dc-e52f-45e6-8565-ef753cc8d920","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://codeclassify-api.rosariovitale0096.workers.dev/v1/hs/search?q=coffee&limit=15","description":"<p>Search Harmonized System customs headings (from the public-domain U.S. HTS) by product keywords or numeric prefix. Suggested classifications only — not customs advice; only an official ruling is binding. Free browser version: <a href=\"https://code-classify.com/hs-code-lookup/\">https://code-classify.com/hs-code-lookup/</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}},"urlObject":{"path":["v1","hs","search"],"host":["https://codeclassify-api.rosariovitale0096.workers.dev"],"query":[{"key":"q","value":"coffee"},{"key":"limit","value":"15"}],"variable":[]}},"response":[],"_postman_id":"73ecb3dc-e52f-45e6-8565-ef753cc8d920"}],"id":"bc25f981-987a-4a8c-a320-3af0f95fc1fc","_postman_id":"bc25f981-987a-4a8c-a320-3af0f95fc1fc","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","id":"662bcd5c-24e1-47d1-8212-6fd7e1f66eda","name":"CodeClassify API — Barcode & Business Code Toolkit","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":""}]}},"variable":[{"key":"base_url","value":"https://codeclassify-api.rosariovitale0096.workers.dev"},{"key":"api_key","value":""}]}