Path Parameters
| Name | Type | Example | Description |
|---|---|---|---|
| id | integer | 1 | Guru identifier. |
Auth
headers: { 'Authorization': 'Replace with your API token' }
Examples
fetch('https://api.gurufocus.com/data/gurus/ID/profile', { method: 'GET', headers: { 'Authorization': 'Replace with your API token' }})
Responses
Successful response. The exact payload fields depend on this endpoint.
Example Body (Field Reference)
No response body is documented for this status.
Introduction
Returns the profile for a specific guru by id.
The response structure matches a single item from the Guru List endpoint, but returns one object instead of an array.
Response Reference
| Display Name | Field Name | Type |
|---|---|---|
| ID | id | number |
| Name | name | string |
| Picture | picture | string |
| Firm | firm | string |
| Profile | profile | string |
| Investment Philosophy | investment_philosophy | string |
| Number of Stocks | number_of_stocks | number |
| Equity | equity | number |
| Last Update | last_update | unix timestamp |
| 10Y Return | return_10y | string |
| 1Y Return | return_1y | string |
| Return Yearly | return_yearly | array |
| Package | package | string |
| 13F Date | date_13f | date string |
| Return Update Time | return_update_time | unix timestamp |
Return Yearly
| Display Name | Field Name | Type |
|---|---|---|
| Year | year | number |
| Return | return | number |