Japan Subsidies & Grants Scraper (jGrants) 🇯🇵 💰 $5/1K avatar

Japan Subsidies & Grants Scraper (jGrants) 🇯🇵 💰 $5/1K

Pricing

from $5.00 / 1,000 subsidy records

Go to Apify Store
Japan Subsidies & Grants Scraper (jGrants) 🇯🇵 💰 $5/1K

Japan Subsidies & Grants Scraper (jGrants) 🇯🇵 💰 $5/1K

Extract Japanese government subsidies & grants from the official jGrants API (Digital Agency): amounts, subsidy rates, deadlines, target industries/regions, full descriptions and application documents — filter by keyword and acceptance status.

Pricing

from $5.00 / 1,000 subsidy records

Rating

0.0

(0)

Developer

Datakura Studio

Datakura Studio

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

19 hours ago

Last modified

Share

Japan Subsidies & Grants Scraper — official jGrants data, structured

Extract Japanese government subsidies and grants (補助金・助成金) from jGrants, the Digital Agency's official subsidy application portal. Keyword search, open-application filtering, and full detail enrichment — amounts, subsidy rates, deadlines, target industries, target regions, employee-size conditions, full descriptions and application-document metadata — returned as clean structured JSON.

The source is an official government API: legal to use, token-free, and exceptionally stable.

What data does it extract?

FieldDescription
subsidyId / codejGrants record ID and subsidy code
titleSubsidy name (e.g. 【久留米市】小規模事業者デジタル化支援補助金)
catchPhraseOne-line summary when provided
institutionGranting institution
targetArea / targetAreaDetailTarget region (全国 or prefecture) + detail
employeeLimitEmployee-count condition (e.g. 20名以下)
maxAmountJpyMaximum grant amount in JPY
subsidyRateSubsidy rate (e.g. 1/2, 2/3) when provided
industriesTarget industries (array)
usePurposesUse purposes (array, e.g. 設備整備・IT導入をしたい)
acceptanceStartAt / acceptanceEndAtApplication window (ISO 8601)
projectEndDeadlineProject completion deadline
isAcceptingViaJgrantsWhether applications go through jGrants itself
descriptionText / descriptionHtmlFull description (plain text + original HTML)
officialPageUrlOfficial jGrants detail page
applicationGuidelines / applicationForms / grantOutlinesApplication document names + sizes
scrapedAtISO timestamp of extraction

Sample output

{
"subsidyId": "a0WJ200000CDbpCMAT",
"code": "S-00009403",
"title": "【久留米市】久留米市小規模事業者デジタル化支援補助金(令和8年度)",
"targetArea": "福岡県",
"employeeLimit": "20名以下",
"maxAmountJpy": 200000,
"industries": ["建設業", "製造業", "卸売業、小売業"],
"usePurposes": ["設備整備・IT導入をしたい"],
"acceptanceStartAt": "2026-06-23T23:30:00.000Z",
"acceptanceEndAt": "2026-12-28T08:15:00.000Z",
"descriptionText": "市内小規模事業者のデジタル化を支援…",
"officialPageUrl": "https://www.jgrants-portal.go.jp/subsidy/a0WJ200000CDbpCMAT",
"applicationForms": [
{ "name": "2-2 支出計画書(第2号様式-2).xls", "approxSizeBytes": 35841 }
],
"scrapedAt": "2026-07-08T01:20:00.000Z"
}

Input

  • keywords — search terms to sweep (min. 2 chars each); results are merged and deduplicated. Broad terms like 補助金 return the whole catalog; combine narrow terms like デジタル, 省エネ, 創業, 輸出
  • acceptingOnly — ON (default): only subsidies currently accepting applications; OFF: full catalog
  • includeDetails — ON (default): enrich each record with full description, rates, industries, documents
  • sort / order — newest first by default; sort by acceptance start/deadline too
  • maxItems — cap on results; you are only charged for what you get

Pricing (pay per event)

UsageApprox. cost
50 subsidies (default)$0.27
500 subsidies$2.52
Full open catalog (~2,400)~$12

Actor start: $0.02 + $0.005 per subsidy (detail enrichment included). No subscription, no rental fee. A daily "what's new" monitoring run costs pennies.

Common use cases

  • Grant-consulting lead engine — 士業/consultants: alert clients the day a matching subsidy opens (region × industry × employee size are all structured fields)
  • SaaS / fintech integrations — power "subsidies you qualify for" features in accounting, banking or HR products
  • AI agents / RAG pipelines — full descriptions in every record make this a drop-in source for LLM matching and summarization

Use from AI agents (MCP)

This Actor can be called as an MCP tool via Apify MCP server. Point your agent to mcp.apify.com and search for this Actor by name.

FAQ

Is this legal? Yes. jGrants' public API is operated by Japan's Digital Agency precisely so subsidy information can be reused programmatically. No personal data.

Why is maxAmountJpy sometimes 0 or fields null? The portal aggregates records from many institutions; not every field is populated at the source. title, targetArea, acceptance dates and officialPageUrl are reliably present.

Can I get the application files themselves? The API embeds files as base64 (several MB each), which would blow up dataset items — this Actor returns file names + sizes instead, and every record links to its official page where files are downloadable.

Does it include municipal subsidies? It includes everything published on jGrants (national + prefectural + municipal). Some purely local subsidies are never posted to jGrants — that subset is out of scope.

Something broken? Open an issue on this Actor's page — fixes ship within 24 hours.


Maintenance notes (internal): list = GET /exp/v1/public/subsidies?keyword=..&sort=..&order=..&acceptance=0|1 (keyword REQUIRED, min 2 chars, else {"message":"Bad request"} HTTP 400). NO pagination — full set in one response (verified count=2418 → len=2418). Detail = GET /subsidies/id/{id}; application_*/outline_of_grant embed base64 file payloads (one record hit 12 MB > Apify's 9 MB item limit — metadata-only mapping is load-bearing). Legitimate empty = metadata.resultset.count: 0. Verified 2026-07-08.