fa.omron.co.jp APIfa.omron.co.jp ↗
Access Omron industrial automation vulnerability advisories and CVE data. Search by product, retrieve OMSR details, and pull the latest RSS security feed.
curl -X GET 'https://api.parse.bot/scraper/9c03c77d-208b-4eed-be6a-7feffdd351b9/get_vulnerability_advisory_list?language=en' \ -H 'X-API-Key: $PARSE_API_KEY'
Get the list of vulnerability advisories from Omron's Product Security page. Returns all published advisories with metadata including affected products, dates, and third-party references.
| Param | Type | Description |
|---|---|---|
| language | string | Language of the advisory list. Accepted values: 'en', 'jp'. |
{
"type": "object",
"fields": {
"advisories": "array of advisory objects with advisory_number, date_info, affected_products, omron_advisory_title, omron_advisory_link, remarks, third_party_advisory, third_party_link"
},
"sample": {
"data": {
"advisories": [
{
"remarks": "<May 7, 2026>Remove NYE from the affected products",
"date_info": "Last modified: May 7, 2026 Release date: November 17, 2025",
"advisory_number": "OMSR-2025-006",
"third_party_link": null,
"affected_products": "Industrial PC platform NY-series",
"omron_advisory_link": "https://www.fa.omron.co.jp/product/security/assets/pdf/en/OMSR-2025-006_en.pdf",
"omron_advisory_title": "Out-of-bounds Read vulnerability in IPC platform NY-series",
"third_party_advisory": null
}
]
},
"status": "success"
}
}About the fa.omron.co.jp API
This API exposes 5 endpoints covering Omron Industrial Automation's Product Security advisories from fa.omron.co.jp. Use get_advisory_detail_by_id to retrieve full CVE identifiers, CVSS scores, affected product names, and third-party advisory links for a specific OMSR ID, or use search_vulnerabilities_by_product to find all advisories matching a product name or keyword across both the advisory title and affected-products fields.
Advisory List and RSS Feed
The get_vulnerability_advisory_list endpoint returns every published Omron security advisory in a structured array. Each advisory object includes an advisory_number (OMSR identifier), date_info, affected_products, omron_advisory_title, a direct omron_advisory_link to the PDF, and remarks for revision notes. The language parameter accepts 'en' or 'jp', letting you retrieve advisories in English or Japanese. The get_vulnerability_advisory_rss endpoint returns the same feed in RSS form — each item carries a title, link, and pubDate — useful for monitoring new advisory publications.
Advisory Detail by OMSR ID
Passing a specific OMSR ID (format OMSR-YYYY-NNN) to get_advisory_detail_by_id enriches the base advisory data with CVE identifiers drawn from linked third-party sources such as JVN. The response includes a cve_ids array, a cvss_score string (may be empty if not yet assigned), the third_party_link URL, and the third_party_advisory name. This makes it straightforward to correlate Omron advisories with CVE databases or CVSS-based risk workflows.
Product-Scoped Vulnerability Search
The search_vulnerabilities_by_product endpoint accepts a free-text query string and performs a case-insensitive match against both the affected_products field and the advisory title in the English advisory list. Results are returned in the same structure as the full advisory list, making it easy to filter advisories relevant to a specific PLC model, sensor series, or software package without post-processing the entire list client-side.
Security Overview Page
The get_security_main_page endpoint returns the url and title of the Omron Product Security overview page. This is a lightweight utility endpoint suited for verifying the canonical page location or building navigation links in dashboards that aggregate industrial security content.
- Automated CVE ingestion pipeline that maps Omron OMSR advisories to internal vulnerability tracking systems using
cve_idsfromget_advisory_detail_by_id. - Product-specific security monitoring that queries
search_vulnerabilities_by_productwhenever a new Omron device is added to an OT/ICS asset inventory. - CVSS-based risk triage that collects
cvss_scorefields across all advisories to prioritize patching for industrial control environments. - RSS-driven alerting system that polls
get_vulnerability_advisory_rssto notify security teams when new Omron advisories are published. - Multilingual compliance reporting that pulls advisory lists in both
'en'and'jp'to satisfy requirements across different regional offices. - Third-party advisory cross-referencing that uses
third_party_linkto join Omron advisories with JVN or NVD entries in a unified vulnerability database.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Omron provide an official developer API for its Product Security advisories?+
What does `get_advisory_detail_by_id` return beyond what the advisory list provides?+
cve_ids (an array of CVE identifier strings from the linked third-party advisory), cvss_score, third_party_link, and third_party_advisory name. The base list endpoints do not include CVE IDs or CVSS scores; you need to call the detail endpoint with a specific omsr_id to get those fields.Does `search_vulnerabilities_by_product` search Japanese-language advisories?+
affected_products field and advisory title from the 'en' language feed. Japanese-language advisory content is available through get_vulnerability_advisory_list with language: 'jp' and get_vulnerability_advisory_rss with language: 'jp', but those results are not included in the search index. You can fork this API on Parse and revise it to extend the search endpoint to cover the Japanese advisory list as well.Is there a way to retrieve the full text or remediation guidance from an advisory PDF?+
omron_advisory_link as a URL to the Omron PDF advisory, but does not parse or return the PDF body text, remediation steps, or mitigation details. You can fork this API on Parse and revise it to add an endpoint that fetches and extracts text from the linked advisory PDF.How fresh is the advisory data, and does the API support pagination?+
search_vulnerabilities_by_product to narrow results is the recommended approach.