Credit Ratings & Risk
Search credit-rated entities and pull their rating reports for risk screens and fixed-income research.
Credit API
The Credit API provides access to institutional credit ratings data, allowing you to search for organizations and retrieve their detailed credit ratings history. This data is essential for credit risk analysis, investment due diligence, and regulatory compliance.
/credit/searchSearches for organizations by name and returns matching entities with their basic identification information. This endpoint is useful for discovering the correct organization ID needed to retrieve detailed credit ratings.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | Required | Organization name or identifier to search for. Supports partial matches. |
Examples:
https://api.axionquant.com/credit/search?query=AAPLhttps://api.axionquant.com/credit/search?query=MSFT&limit=20Response Fields
id string
Unique organization identifier
name string
Full organization name
sectorCode string
Industry sector code (e.g., "CORP" for Corporate)
country string
Country of domicile
state string
State or province (if applicable)
navigationUrl string|null
URL for detailed organization page
Search Organizations
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4results = client.credit.search('Apple')
5print(results)Response
[
{
"id": "689595",
"name": "Apple Bidco, LLC",
"sectorCode": "CORP",
"country": "USA",
"state": "Texas",
"navigationUrl": null
},
{
"id": "112354",
"name": "Apple Inc.",
"sectorCode": "CORP",
"country": "USA",
"state": "California",
"navigationUrl": null
}
]