[FinancialReports](/)
 / 
[Companies](/companies/search/)
 / 
[Japan](/companies/countries/japan/)
 / 
**377A**

A

# Agent IG Holdings Inc. — Investor Relations & Filings

Ticker · **377A**
T
Financial and insurance activities

[Open in API](/api-solutions/)

Overview

Filings 0
Market data
Peer group
API

Filings indexed
0
across all filing types

Latest filing
—
no filings yet

Country
JP
Japan

Listing
T
377A

## Recent filings

View all 0 →

### No filings indexed yet

We are still gathering filings for Agent IG Holdings Inc.. Report a missing filing.

[]
[]

Filing type

Language

Start date

End date

Apply filters
[Clear](/companies/agent-ig-holdings-inc/)
Report missing filing

Download originals
Download Markdown

### No filings match the current filters

Try clearing the filters, or report a missing filing.

## Market data

### Market data not available

Last price

Market cap

volume

Day range

today

52-week range

trailing

### Price history

1Y
5Y
10Y

## Peer group · Activities of insurance agents and brokers

43 peers

| Company | Ticker | Country | Sector |
| --- | --- | --- | --- |
| [**ACEnetx Inc.**](/companies/acenetx-inc/) Provides comprehensive financial planning and insurance sol… | — | CA | Financial and insurance activit… |
| [**Advance Create Co.,Ltd.**](/companies/advance-create-coltd/) Independent insurance agency offering life, non-life, media… | 8798 | JP | Financial and insurance activit… |
| [**AIFU Inc.**](/companies/aifu-inc/) AI-driven platform for insurance distribution and financial… | AIFU | US | Financial and insurance activit… |
| [**Aon plc**](/companies/aon-plc/) A professional services firm providing risk and human capit… | AON | IE | Financial and insurance activit… |
| [**A Plus Asset Advisor Co., Ltd.**](/companies/a-plus-asset-advisor-co-ltd/) Financial services firm offering insurance brokerage and fi… | 244920 | KR | Financial and insurance activit… |
| [**Arthur J. Gallagher & Co.**](/companies/arthur-j-gallagher-co/) A global firm providing insurance brokerage, risk managemen… | AJG | US | Financial and insurance activit… |
| [**ASKO ao**](/companies/asko-ao/) A group of companies providing insurance agency and adminis… | ASKO | RU | Financial and insurance activit… |
| [**AUB GROUP LIMITED**](/companies/aub-group-limited/) Provides insurance broking, underwriting agencies, and risk… | AUB | AU | Financial and insurance activit… |
| [**Baldwin Insurance Group, Inc.**](/companies/baldwin-insurance-group-inc/) An independent insurance distribution and advisory firm pro… | BWIN | US | Financial and insurance activit… |
| [**BROWN & BROWN, INC.**](/companies/brown-brown-inc/) A diversified insurance brokerage providing risk management… | BRO | US | Financial and insurance activit… |

Page **1** of **5**

1
[2](?peer_page=2)
[3](?peer_page=3)
…
[Next](?peer_page=2)

### Agent IG Holdings Inc. via the API

Pull this company's filings, identifiers, and metadata as JSON or Markdown. Authenticate with your API key, then query by company ID, ISIN, or LEI. Full schema documented in the OpenAPI spec.

[Get API access](/api-solutions/)
[Read API reference](/developers/reference/)

Base URLapi.financialreports.eu

Auth headerx-api-key

Company ID72525

Ticker377A

### Endpoints

most-used routes for this company

|  |  |  |
| --- | --- | --- |
| GET | /api/companies/72525/ | Company identity, sector, listing, identifiers |
| GET | /api/filings/?company=72525 | Paginated list of all filings (filterable by type, date, language) |
| GET | /api/filings/{id}/ | Single filing — metadata, document URL, processing status |
| GET | /api/filings/{id}/markdown/ | Filing content as Markdown (PDF → text/tables/figures) |
| GET | /api/isins/?company=72525 | All ISINs registered to this company |
| GET | /api/filing-types/ | Reference: every filing-type code + category |

Full reference: [API reference](/developers/reference/) · [OpenAPI schema](/api/schema/)

### cURL

latest filings for Agent IG Holdings Inc.

```
$ curl https://api.financialreports.eu/api/filings/?company=72525 \
    -H "x-api-key: $FR_API_KEY" \
    -H "Accept: application/json"
```

### Python

requests

```
import requests

r = requests.get(
    "https://api.financialreports.eu/api/filings/",
    params={"company": 72525},
    headers={"x-api-key": API_KEY},
)
filings = r.json()["results"]
```

### MCP server

Claude · Claude Code · ChatGPT

[Claude setup →](/integrations/claude/)
[ChatGPT setup →](/integrations/chatgpt/)
[Claude Code setup →](/integrations/claude-code/)

```
// MCP server URL
https://mcp.financialfilings.com/mcp

// Once connected, the LLM can query this company directly:
"Pull the latest 5 filings for Agent IG Holdings Inc. (id: 72525)"
```

#### AI · Markdown

Filings as Markdown

Drop the latest filing into Claude or ChatGPT, or query via MCP from your client.

[Browse filings↗](#filings)
[Open in MCP↗](/integrations/claude/)
[cURL endpoint$](/api-solutions/)

#### Identity

Legal nameAgent IG Holdings Inc.

HQJP

ListingT

Sector[Financial and insurance activities](/companies/sectors/financial-and-insurance-activities/)

Industry[Activities auxiliary to insurance and pension funding](/companies/sectors/financial-and-insurance-activities/activities-auxiliary-to-insurance-and-pension-funding/)

#### Coverage

Filings indexed
0

### Report missing filing

Can't find a specific document? Let us know and we'll add it within 24 hours.

What is missing or wrong?

Your email

We will notify you once the filing is added.

Cancel

Send report
Sending…

Report sent

Thank you. We will check the data and update it shortly.

×

(function() {
const tabs = document.querySelectorAll('.cmp-tabs-wrap .fr-tab');
const panes = document.querySelectorAll('.tab-pane');
function activate(target, pushHash) {
tabs.forEach(t => {
const isActive = t.dataset.tab === target;
t.classList.toggle('fr-tab--active', isActive);
t.setAttribute('aria-selected', isActive ? 'true' : 'false');
});
panes.forEach(p => {
const isActive = p.dataset.pane === target;
p.classList.toggle('tab-pane--active', isActive);
p.hidden = !isActive;
});
if (pushHash) {
try { history.replaceState(null, '', '#' + target); } catch (e) {}
}
}
tabs.forEach(tab => {
tab.addEventListener('click', () => { activate(tab.dataset.tab, true); window.scrollTo({ top: 0, behavior: 'instant' }); });
});
const initial = (window.location.hash || '').replace('#', '');
const validTabs = ['overview', 'filings', 'financials', 'market', 'peers', 'api'];
const legacyMap = { 'market-data': 'market', 'peer-group': 'peers' };
let target = legacyMap[initial] || (validTabs.indexOf(initial) >= 0 ? initial : 'overview');
if (target !== 'overview') activate(target, false);
})();