Funders
Funder
Retrieve detailed metadata for a single research funding agency by its HX_F identifier.
GET
/
funders
/
{id}
curl -X GET "https://api.hexagraph.in/funders/HX_F4320321001"
fetch("https://api.hexagraph.in/funders/HX_F4320321001")
.then(response => response.json())
.then(data => console.log(data));
import requests
response = requests.get("https://api.hexagraph.in/funders/HX_F4320321001")
print(response.json())
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
resp, err := http.Get("https://api.hexagraph.in/funders/HX_F4320321001")
if err != nil {
fmt.Println("Error:", err)
return
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}
{
"id": "HX_F4320321001",
"name": "National Natural Science Foundation of China",
"alternate_titles": [
"NNSF of China",
"Guójiā Zìrán Kēxué Jījīn Wěiyuánhuì",
"NSF of China",
"The National Natural Science Foundation of China",
],
"country": {
"code": "CN",
"name": "China"
},
"description": "Chinese government body",
"homepage_url": "https://www.nsfc.gov.cn",
"image_url": "https://commons.wikimedia.org/w/index.php?title=Special:Redirect/file/National Natural Science Foundation of China (20230310102823).jpg",
"image_thumbnail_url": "https://commons.wikimedia.org/w/index.php?title=Special:Redirect/file/National Natural Science Foundation of China (20230310102823).jpg&width=300",
"grants_count": 1698,
"awards_count": 1190293,
"outputs_count": 4455709,
"cited_by_count": 113648084,
"summary_stats": {
"2yr_mean_citedness": 5.924197295373457,
"h_index": 1211,
"i10_index": 2243793
},
"ids": {
"ror": "https://ror.org/01h0zpd94",
"wikidata": "https://www.wikidata.org/entity/Q4501917",
"crossref": "501100001809",
"doi": "10.13039/501100001809"
},
"counts_by_year": [
{
"year": 2028,
"outputs_count": 4,
"oa_outputs_count": 4,
"cited_by_count": 0
}
],
"roles": [
{
"role": "funder",
"id": "HX_F4320321001",
"outputs_count": 4455709
}
],
"updated_date": "2026-08-05T04:01:50",
"created_date": "2023-02-13T20:32:25"
}
{
"statusCode": 400,
"message": "Only HX_ prefixed IDs are allowed",
"error": "Bad Request"
}
{
"statusCode": 404,
"message": "Funder with ID HX_F9999999999 not found",
"error": "Not Found"
}
{
"statusCode": 429,
"error": "Too Many Requests",
"message": "IP rate limit exceeded (max 30 requests per minute). Please try again in 42 seconds (at 11:40:32 UTC).",
"reset_in_seconds": 42,
"reset_at_utc": "2026-08-05T11:40:32.000Z"
}
Retrieves a single research granting agency, foundation, or government funding body by its
HX_F identifier.
Path Parameters
string
required
Unique funder identifier (e.g.
HX_F4320321001). Must be prefixed with HX_F.Response Fields
string
required
Unique funder identifier prefixed with
HX_F (e.g. HX_F4320321001).string
required
Funder display name (e.g.
"National Science Foundation").array
Alternative display names or abbreviations.
object
string
Summary description of the funding agency.
string
Official website URL.
string
Image URL.
string
Thumbnail image URL.
integer
Total number of grants associated with this funder.
integer
Total number of awards associated with this funder.
integer
Total number of indexed outputs funded by this agency.
integer
Total citation count received across all funded outputs.
object
array
object
array
string
Last updated timestamp.
string
Creation timestamp.
curl -X GET "https://api.hexagraph.in/funders/HX_F4320321001"
fetch("https://api.hexagraph.in/funders/HX_F4320321001")
.then(response => response.json())
.then(data => console.log(data));
import requests
response = requests.get("https://api.hexagraph.in/funders/HX_F4320321001")
print(response.json())
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
resp, err := http.Get("https://api.hexagraph.in/funders/HX_F4320321001")
if err != nil {
fmt.Println("Error:", err)
return
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}
{
"id": "HX_F4320321001",
"name": "National Natural Science Foundation of China",
"alternate_titles": [
"NNSF of China",
"Guójiā Zìrán Kēxué Jījīn Wěiyuánhuì",
"NSF of China",
"The National Natural Science Foundation of China",
],
"country": {
"code": "CN",
"name": "China"
},
"description": "Chinese government body",
"homepage_url": "https://www.nsfc.gov.cn",
"image_url": "https://commons.wikimedia.org/w/index.php?title=Special:Redirect/file/National Natural Science Foundation of China (20230310102823).jpg",
"image_thumbnail_url": "https://commons.wikimedia.org/w/index.php?title=Special:Redirect/file/National Natural Science Foundation of China (20230310102823).jpg&width=300",
"grants_count": 1698,
"awards_count": 1190293,
"outputs_count": 4455709,
"cited_by_count": 113648084,
"summary_stats": {
"2yr_mean_citedness": 5.924197295373457,
"h_index": 1211,
"i10_index": 2243793
},
"ids": {
"ror": "https://ror.org/01h0zpd94",
"wikidata": "https://www.wikidata.org/entity/Q4501917",
"crossref": "501100001809",
"doi": "10.13039/501100001809"
},
"counts_by_year": [
{
"year": 2028,
"outputs_count": 4,
"oa_outputs_count": 4,
"cited_by_count": 0
}
],
"roles": [
{
"role": "funder",
"id": "HX_F4320321001",
"outputs_count": 4455709
}
],
"updated_date": "2026-08-05T04:01:50",
"created_date": "2023-02-13T20:32:25"
}
{
"statusCode": 400,
"message": "Only HX_ prefixed IDs are allowed",
"error": "Bad Request"
}
{
"statusCode": 404,
"message": "Funder with ID HX_F9999999999 not found",
"error": "Not Found"
}
{
"statusCode": 429,
"error": "Too Many Requests",
"message": "IP rate limit exceeded (max 30 requests per minute). Please try again in 42 seconds (at 11:40:32 UTC).",
"reset_in_seconds": 42,
"reset_at_utc": "2026-08-05T11:40:32.000Z"
}
⌘I
curl -X GET "https://api.hexagraph.in/funders/HX_F4320321001"
fetch("https://api.hexagraph.in/funders/HX_F4320321001")
.then(response => response.json())
.then(data => console.log(data));
import requests
response = requests.get("https://api.hexagraph.in/funders/HX_F4320321001")
print(response.json())
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
resp, err := http.Get("https://api.hexagraph.in/funders/HX_F4320321001")
if err != nil {
fmt.Println("Error:", err)
return
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}
{
"id": "HX_F4320321001",
"name": "National Natural Science Foundation of China",
"alternate_titles": [
"NNSF of China",
"Guójiā Zìrán Kēxué Jījīn Wěiyuánhuì",
"NSF of China",
"The National Natural Science Foundation of China",
],
"country": {
"code": "CN",
"name": "China"
},
"description": "Chinese government body",
"homepage_url": "https://www.nsfc.gov.cn",
"image_url": "https://commons.wikimedia.org/w/index.php?title=Special:Redirect/file/National Natural Science Foundation of China (20230310102823).jpg",
"image_thumbnail_url": "https://commons.wikimedia.org/w/index.php?title=Special:Redirect/file/National Natural Science Foundation of China (20230310102823).jpg&width=300",
"grants_count": 1698,
"awards_count": 1190293,
"outputs_count": 4455709,
"cited_by_count": 113648084,
"summary_stats": {
"2yr_mean_citedness": 5.924197295373457,
"h_index": 1211,
"i10_index": 2243793
},
"ids": {
"ror": "https://ror.org/01h0zpd94",
"wikidata": "https://www.wikidata.org/entity/Q4501917",
"crossref": "501100001809",
"doi": "10.13039/501100001809"
},
"counts_by_year": [
{
"year": 2028,
"outputs_count": 4,
"oa_outputs_count": 4,
"cited_by_count": 0
}
],
"roles": [
{
"role": "funder",
"id": "HX_F4320321001",
"outputs_count": 4455709
}
],
"updated_date": "2026-08-05T04:01:50",
"created_date": "2023-02-13T20:32:25"
}
{
"statusCode": 400,
"message": "Only HX_ prefixed IDs are allowed",
"error": "Bad Request"
}
{
"statusCode": 404,
"message": "Funder with ID HX_F9999999999 not found",
"error": "Not Found"
}
{
"statusCode": 429,
"error": "Too Many Requests",
"message": "IP rate limit exceeded (max 30 requests per minute). Please try again in 42 seconds (at 11:40:32 UTC).",
"reset_in_seconds": 42,
"reset_at_utc": "2026-08-05T11:40:32.000Z"
}