API Documentation
RESTful API with OpenAPI 3.0 specification. Structured JSON responses designed for integration with Federal procurement and grants management systems.
System Integration Architecture
/v1/manufacturers/searchSearch domestic manufacturers by keyword, capability, certification, NAICS code, state, or material.
Parameters
| Name | Type | Description |
|---|---|---|
| query | string | Search keyword (product, capability, or manufacturer name) |
| location_state | string | Two-letter US state code (e.g., CA, TX, OH) |
| capabilities | string[] | Filter by manufacturing capabilities |
| certifications | string[] | Filter by compliance certifications (ITAR, AS9100, etc.) |
| naics | string | Filter by NAICS code or prefix |
| page | integer | Page number (default: 1) |
| per_page | integer | Results 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
}/v1/manufacturers/:idRetrieve complete profile for a specific manufacturer including government identifiers, capabilities, certifications, and materials.
Parameters
| Name | Type | Description |
|---|---|---|
| id | string | Manufacturer 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..."
}/v1/waiversQuery Made in America waiver data. Identify product categories where agencies have requested domestic sourcing exceptions.
Parameters
| Name | Type | Description |
|---|---|---|
| naics | string | Filter by NAICS code |
| agency | string | Filter by Federal agency |
| q | string | Search waiver descriptions |
| limit | integer | Results 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
}/v1/opportunitiesFederal contract opportunities from SAM.gov with matched domestic suppliers. Supports filtering by NAICS code, notice type, and keywords.
Parameters
| Name | Type | Description |
|---|---|---|
| naics | string | Filter by NAICS code |
| keywords | string | Search opportunity text |
| noticeType | string | Notice type: r (sources sought), s (solicitation), p (presolicitation) |
| state | string | Place of performance state |
Example Request
curl "https://api.madeinamericasolutions.com/v1/opportunities?naics=332710¬iceType=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.
pip install mias-clientnpm install @mias/client