USA
Made in America Solutions

API Documentation

RESTful API with OpenAPI 3.0 specification. Structured JSON responses designed for integration with Federal procurement and grants management systems.

Sub-second response timesOpenAPI 3.0API Key AuthenticationPython and TypeScript SDKs

System Integration Architecture

Agency Procurement System
MIAS REST API
SAM.gov
FPDS-NG
318K+ Manufacturers
GET/v1/manufacturers/search

Search domestic manufacturers by keyword, capability, certification, NAICS code, state, or material.

Parameters

NameTypeDescription
querystringSearch keyword (product, capability, or manufacturer name)
location_statestringTwo-letter US state code (e.g., CA, TX, OH)
capabilitiesstring[]Filter by manufacturing capabilities
certificationsstring[]Filter by compliance certifications (ITAR, AS9100, etc.)
naicsstringFilter by NAICS code or prefix
pageintegerPage number (default: 1)
per_pageintegerResults per page (default: 20, max: 100)

Example Request

curl "https://api.madeinamericasolutions.com/v1/manufacturers/search?query=CNC+machining&location_state=CA&certifications=ITAR&per_page=5"

Example Response

{
  "results": [
    {
      "id": "a1b2c3d4",
      "company_name": "Precision Aerospace Manufacturing Inc.",
      "slug": "precision-aerospace-manufacturing",
      "location_city": "Los Angeles",
      "location_state": "CA",
      "cage_code": "3ABC1",
      "uei": "WMLKJ3EXAMPLE",
      "naics_codes": ["332710", "336413"],
      "capabilities": ["CNC Machining", "5-Axis Milling", "EDM"],
      "certifications": ["ITAR", "AS9100D", "ISO 9001:2015", "NADCAP"],
      "materials": ["Titanium", "Inconel", "Aluminum"],
      "sam_registration_status": "Active"
    }
  ],
  "total": 847,
  "page": 1,
  "per_page": 5
}
GET/v1/manufacturers/:id

Retrieve complete profile for a specific manufacturer including government identifiers, capabilities, certifications, and materials.

Parameters

NameTypeDescription
idstringManufacturer ID or URL slug

Example Request

curl "https://api.madeinamericasolutions.com/v1/manufacturers/precision-aerospace-manufacturing"

Example Response

{
  "id": "a1b2c3d4",
  "company_name": "Precision Aerospace Manufacturing Inc.",
  "location_city": "Los Angeles",
  "location_state": "CA",
  "cage_code": "3ABC1",
  "uei": "WMLKJ3EXAMPLE",
  "sam_registration_status": "Active",
  "naics_codes": ["332710", "336413"],
  "capabilities": ["CNC Machining", "5-Axis Milling", "EDM", "Grinding"],
  "certifications": ["ITAR", "AS9100D", "ISO 9001:2015"],
  "materials": ["Titanium", "Inconel", "Aluminum", "Stainless Steel"],
  "year_established": 1987,
  "employee_count": 145,
  "website": "https://example.com",
  "summary": "Precision aerospace manufacturer specializing in..."
}
GET/v1/waivers

Query Made in America waiver data. Identify product categories where agencies have requested domestic sourcing exceptions.

Parameters

NameTypeDescription
naicsstringFilter by NAICS code
agencystringFilter by Federal agency
qstringSearch waiver descriptions
limitintegerResults per page

Example Request

curl "https://api.madeinamericasolutions.com/v1/waivers?agency=DoD&limit=10"

Example Response

{
  "waivers": [
    {
      "id": "w-12345",
      "agency": "Department of Defense",
      "product_description": "Specialized optical components",
      "naics_code": "333314",
      "request_status": "Reviewed",
      "domestic_alternatives_found": 3,
      "created_at": "2025-11-15T00:00:00Z"
    }
  ],
  "total": 1847
}
GET/v1/opportunities

Federal contract opportunities from SAM.gov with matched domestic suppliers. Supports filtering by NAICS code, notice type, and keywords.

Parameters

NameTypeDescription
naicsstringFilter by NAICS code
keywordsstringSearch opportunity text
noticeTypestringNotice type: r (sources sought), s (solicitation), p (presolicitation)
statestringPlace of performance state

Example Request

curl "https://api.madeinamericasolutions.com/v1/opportunities?naics=332710&noticeType=s"

Example Response

{
  "opportunities": [
    {
      "notice_id": "SAM-2025-12345",
      "title": "Precision Machined Components for F-35 Program",
      "department": "Department of Defense",
      "naics_code": "332710",
      "posted_date": "2025-12-01",
      "response_deadline": "2026-01-15",
      "matched_supplier_count": 23,
      "set_aside_type": "Total Small Business"
    }
  ],
  "total": 412
}

SDKs and Integration

Client libraries available for Python and TypeScript. OpenAPI 3.0 specification enables automatic code generation for any language.

Python
pip install mias-client
TypeScript
npm install @mias/client