zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
On this page
  • Playground
  • Code examples
  • Full reference
  • Related APIs
Research/SINTA
Logo SINTA

SINTA

Science and Technology Index — Indonesian researchers, affiliations, departments, accredited journals, books, IPR and Scopus/Scholar output with SINTA scores.

Endpoints
16
Requests
26
Updated
4 hours ago
For LLMs
llms.txt
Endpoint healthnot yet measured
  • affiliation-departmentsnot measured
  • affiliationnot measured
  • affiliationsnot measured
  • authornot measured
  • authorsnot measured
+ 11 more endpointsShow less
  • booksnot measured
  • community-servicesnot measured
  • departmentsnot measured
  • google-scholarnot measured
  • insightnot measured
  • iprsnot measured
  • journalsnot measured
  • researchesnot measured
  • scopusnot measured
  • subjectsnot measured
  • wcunot measured
no measurements yetdaily 01:00 WIB

Playground

16 endpoints
GET/v1/research:sinta/affiliation-departments/:affiliationId/:affiliationCode5m cache5 paramschecking key…
Parameters
Path
affiliationIdstringrequired

SINTA affiliation id, the affiliationId returned by the affiliations endpoint

affiliationCodestring

Institution code, the code returned by the affiliations endpoint. Resolved automatically when omitted

Query
querystring

Free-text programme search within this institution

pagenumber

Page number, 10 programmes per page. Default 1

sortenum

Ranking order. Default score3yr

·
Response
EXAMPLE
{
  "page": 1,
  "sort": "score3yr",
  "count": 10,
  "items": [
    {
      "url": "https://sinta.kemdiktisaintek.go.id/departments/profile/384/001001/11201",
      "name": "Kedokteran",
      "level": "S1",
      "authors": [
        {
          "name": "BAGAS SURYO BINTORO",
          "authorId": "6788835"
        },
        {
          "name": "ETI NURWENING SHOLIKHAH",
          "authorId": "6012080"
        }
      ],
      "metrics": {
        "sintaScore3Yr": 39541,
        "sintaScoreOverall": 109563
      },
      "departmentCode": "11201"
    },
    {
      "url": "https://sinta.kemdiktisaintek.go.id/departments/profile/384/001001/54261",
      "name": "Kedokteran Hewan",
      "level": "S1",
      "authors": [
        {
          "name": "IDA FITRIANA",
          "authorId": "5985331"
        },
        {
          "name": "HEVI WIHADMADYATAMI",
          "authorId": "44009"
        }
      ],
      "metrics": {
        "sintaScore3Yr": 21992,
        "sintaScoreOverall": 55014
      },
      "departmentCode": "54261"
    }
  ],
  "limit": 10,
  "query": "kedokteran",
  "total": 14,
  "hasMore": true,
  "nextPage": 2,
  "provider": "sinta",
  "affiliationId": "384",
  "affiliationCode": "001001",
  "affiliationName": "Universitas Gadjah Mada"
}

Code examples

Affiliation Departments
zpi-sdkrecommended
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("research:sinta", "affiliation-departments", {
  "affiliationId": "384",
  "affiliationCode": "001001",
  "query": "kedokteran",
  "page": 1,
  "sort": "score3yr"
});
console.log(data);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/research:sinta/affiliation-departments/384/001001?query=kedokteran&page=1&sort=score3yr" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

16 endpoints · plain text
GETAffiliation Departments/v1/research:sinta/affiliation-departments/:affiliationId/:affiliationCodeSINTA — one institution's study programmes (/affiliations/departments/{id}/{code}). Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id

Parameters

affiliationIdstringrequiredin path
SINTA affiliation id, the affiliationId returned by the affiliations endpoint
affiliationCodestringoptionalin path
Institution code, the code returned by the affiliations endpoint. Resolved automatically when omitted
querystringoptional
Free-text programme search within this institution
pagenumberoptional
Page number, 10 programmes per page. Default 1
sortenumoptional
Ranking order. Default score3yr Values: score3yr, scoreOverall, alphabetical.

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/affiliation-departments/384/001001?query=kedokteran&page=1&sort=score3yr" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "sort": "score3yr",
  "count": 10,
  "items": [
    {
      "url": "https://sinta.kemdiktisaintek.go.id/departments/profile/384/001001/11201",
      "name": "Kedokteran",
      "level": "S1",
      "authors": [
        {
          "name": "BAGAS SURYO BINTORO",
          "authorId": "6788835"
        },
        {
          "name": "ETI NURWENING SHOLIKHAH",
          "authorId": "6012080"
        }
      ],
      "metrics": {
        "sintaScore3Yr": 39541,
        "sintaScoreOverall": 109563
      },
      "departmentCode": "11201"
    },
    {
      "url": "https://sinta.kemdiktisaintek.go.id/departments/profile/384/001001/54261",
      "name": "Kedokteran Hewan",
      "level": "S1",
      "authors": [
        {
          "name": "IDA FITRIANA",
          "authorId": "5985331"
        },
        {
          "name": "HEVI WIHADMADYATAMI",
          "authorId": "44009"
        }
      ],
      "metrics": {
        "sintaScore3Yr": 21992,
        "sintaScoreOverall": 55014
      },
      "departmentCode": "54261"
    }
  ],
  "limit": 10,
  "query": "kedokteran",
  "total": 14,
  "hasMore": true,
  "nextPage": 2,
  "provider": "sinta",
  "affiliationId": "384",
  "affiliationCode": "001001",
  "affiliationName": "Universitas Gadjah Mada"
}
GETAffiliation/v1/research:sinta/affiliation/:affiliationIdSINTA — one institution's profile (/affiliations/profile/{id}), with its indexed output. Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id

Parameters

affiliationIdstringrequiredin path
SINTA affiliation id, the affiliationId returned by the affiliations endpoint
viewenumoptional
Which output tab to read. Default scopus Values: scopus, garuda, googleScholar, researches, services, iprs, books.

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/affiliation/404?view=scopus" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "url": "https://sinta.kemdiktisaintek.go.id/affiliations/profile/404",
  "code": "001019",
  "name": "Universitas Brawijaya",
  "view": "scopus",
  "count": 10,
  "items": [
    {
      "doi": null,
      "url": "https://www.scopus.com/record/display.uri?eid=2-s2.0-105035910996&origin=resultslist",
      "year": 2027,
      "title": "HABITAT TYPE EFFECTS ON INSECT POLLINATOR SPECIES RICHNESS AND ABUNDANCE IN JAMBI OIL PALM PLANTATIONS",
      "authors": "Jihadi A.",
      "quartile": "Q4 Journal",
      "authorOrder": null,
      "citedByCount": 0,
      "publicationUrl": "https://www.scopus.com/sourceid/21101041703",
      "publicationName": "Indian Journal of Entomology"
    }
  ],
  "metrics": {
    "authors": 2686,
    "indexes": {
      "garuda": {
        "citations": 707,
        "documents": 47499,
        "citedDocuments": 450,
        "citationsPerResearcher": 0.31
      },
      "scopus": {
        "citations": 143868,
        "documents": 19242,
        "citedDocuments": 13925,
        "citationsPerResearcher": 62.31
      },
      "webOfScience": {
        "citations": 1849,
        "documents": 555,
        "citedDocuments": 266,
        "citationsPerResearcher": 0.8
      },
      "googleScholar": {
        "citations": 1124352,
        "documents": 148198,
        "citedDocuments": 86473,
        "citationsPerResearcher": 486.94
      }
    },
    "journals": 104,
    "departments": 208,
    "sintaScore3Yr": 887455,
    "sintaScoreOverall": 2300397,
    "sintaScoreProductivity": 1083,
    "sintaScoreProductivity3Yr": 418
  },
  "imageUrl": "https://sinta-document-650498682909-ap-southeast-3-an.s3.ap-southeast-3.amazonaws.com/public/affiliation/404.png",
  "location": "KOTA MALANG - JAWA TIMUR, ID",
  "provider": "sinta",
  "abbreviation": "UB",
  "affiliationId": "404",
  "indexUpdatedAt": "2026-07-06 11:51:18"
}
GETAffiliations/v1/research:sinta/affiliationsSINTA — affiliation listing (/affiliations?q=&page=), the Indonesian institution index. Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id

Parameters

querystringoptional
Free-text institution search. Omit for the full ranked index
pagenumberoptional
Page number, 10 institutions per page. Default 1
sortenumoptional
Ranking order. Default score3yr Values: score3yr, scoreOverall, alphabetical.

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/affiliations?query=universitas&page=1&sort=score3yr" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "sort": "score3yr",
  "count": 10,
  "items": [
    {
      "url": "https://sinta.kemdiktisaintek.go.id/affiliations/profile/384",
      "code": "001001",
      "name": "Universitas Gadjah Mada",
      "metrics": {
        "authors": 3674,
        "departments": 294,
        "sintaScore3Yr": 1610976,
        "sintaScoreOverall": 5411955
      },
      "imageUrl": "https://sinta-document-650498682909-ap-southeast-3-an.s3.ap-southeast-3.amazonaws.com/public/affiliation/384.jpg",
      "location": "KAB. SLEMAN - DAERAH ISTIMEWA YOGYAKARTA, ID",
      "abbreviation": "UGM",
      "affiliationId": "384"
    },
    {
      "url": "https://sinta.kemdiktisaintek.go.id/affiliations/profile/380",
      "code": "001004",
      "name": "Universitas Airlangga",
      "metrics": {
        "authors": 2240,
        "departments": 194,
        "sintaScore3Yr": 1334044,
        "sintaScoreOverall": 3624707
      },
      "imageUrl": "https://sinta-document-650498682909-ap-southeast-3-an.s3.ap-southeast-3.amazonaws.com/public/affiliation/380.jpg",
      "location": "KOTA SURABAYA - JAWA TIMUR, ID",
      "abbreviation": "UNAIR",
      "affiliationId": "380"
    }
  ],
  "limit": 10,
  "query": "universitas",
  "total": 1015,
  "hasMore": true,
  "nextPage": 2,
  "provider": "sinta"
}
GETAuthor/v1/research:sinta/author/:authorIdSINTA — one researcher's profile (/authors/profile/{id}), mirroring the category's author shape: identity flat at the top, every number under `metrics`, the output list last.

Parameters

authorIdstringrequiredin path
SINTA author id, the authorId returned by the authors endpoint
viewenumoptional
Which output tab to read. Default scopus Values: scopus, garuda, googleScholar, rama, researches, services, iprs, books.

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/author/6005167?view=googleScholar" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "url": "https://sinta.kemdiktisaintek.go.id/authors/profile/6005167",
  "name": "REFNI YULIA",
  "view": "googleScholar",
  "count": 10,
  "items": [
    {
      "doi": null,
      "url": "https://scholar.google.com/scholar?q=+intitle:'TECHNICAL GUIDANCE IN WRITING THE HISTORY OF NAGARI GUNUNG MEDAN DISTRICT DHARMASRAYA'",
      "year": 2024,
      "title": "TECHNICAL GUIDANCE IN WRITING THE HISTORY OF NAGARI GUNUNG MEDAN DISTRICT DHARMASRAYA",
      "authors": "R Nazmi, Z Zulfa, L Husnita, R Yulia, M Meldawati, J Jamurin",
      "quartile": null,
      "authorOrder": null,
      "citedByCount": 2,
      "publicationUrl": null,
      "publicationName": "Human: Journal of Community and Public Service 3 (1), 2024"
    }
  ],
  "metrics": {
    "indexes": {
      "scopus": {
        "gIndex": 0,
        "hIndex": 0,
        "articles": 0,
        "i10Index": 0,
        "citations": 0,
        "citedDocuments": 0
      },
      "webOfScience": {
        "gIndex": null,
        "hIndex": null,
        "articles": 0,
        "i10Index": null,
        "citations": 0,
        "citedDocuments": 0
      },
      "googleScholar": {
        "gIndex": 2,
        "hIndex": 5,
        "articles": 34,
        "i10Index": 2,
        "citations": 98,
        "citedDocuments": 17
      }
    },
    "sintaScore3Yr": 181,
    "affiliationScore": 544,
    "sintaScoreOverall": 544,
    "affiliationScore3Yr": 181
  },
  "authorId": "6005167",
  "imageUrl": "https://scholar.googleusercontent.com/citations?view_op=view_photo&user=hHkSmMoAAAAJ&citpid=1",
  "provider": "sinta",
  "subjects": [
    {
      "name": "History",
      "subjectId": "13474"
    }
  ],
  "affiliationId": "4479",
  "departmentName": "S1 - Sejarah",
  "affiliationName": "Universitas Pertahanan"
}
GETAuthors/v1/research:sinta/authorsSINTA — researcher listing (/authors?q=&page=), the Indonesian scholar index. Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id

Parameters

querystringoptional
Free-text researcher search. Omit for the full ranked index
pagenumberoptional
Page number, 10 researchers per page. Default 1
sortenumoptional
Ranking order. Default score3yr Values: score3yr, scoreOverall, scopusHIndex, googleScholarHIndex, wosHIndex.

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/authors?query=budi&page=1&sort=score3yr" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "sort": "score3yr",
  "count": 10,
  "items": [
    {
      "url": "https://sinta.kemdiktisaintek.go.id/authors/profile/6020372",
      "name": "MOCHAMAD ARIEF BUDIHARDJO",
      "metrics": {
        "wosHIndex": 11,
        "scopusHIndex": 19,
        "sintaScore3Yr": 1282,
        "sintaScoreOverall": 5607,
        "googleScholarHIndex": 24
      },
      "authorId": "6020372",
      "imageUrl": "https://scholar.googleusercontent.com/citations?view_op=view_photo&user=HeCykBgAAAAJ&citpid=1",
      "subjects": [],
      "affiliationId": "6",
      "departmentName": "Teknik Lingkungan (S2)",
      "affiliationName": "Universitas Diponegoro",
      "googleScholarId": "HeCykBgAAAAJ"
    }
  ],
  "limit": 10,
  "query": "budi",
  "total": 3545,
  "hasMore": true,
  "nextPage": 2,
  "provider": "sinta"
}
GETBooks/v1/research:sinta/booksSINTA — academic book listing (/books?q=&page=). Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id and sinta.ristekbrin.go.id are DEAD names — a 0-19ms connect failure there is DNS, not a WAF.

Parameters

querystringoptional
Free-text title search. Omit for the full index
pagenumberoptional
Page number, 10 books per page. Default 1

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/books?query=kimia&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 10,
  "items": [
    {
      "city": "YOGYAKARTA",
      "isbn": "9786022290230",
      "year": 2001,
      "title": "Kimia Komputasi: Molecular Docking Plants (Protein-Ligand-Ant-System)",
      "source": "MANUAL",
      "coverUrl": "https://sinta.kemdiktisaintek.go.id/authorverification/public/images/books/_9786022290230.jpg",
      "claimedBy": [
        {
          "name": "HARI PURNOMO",
          "authorId": "6012096"
        }
      ],
      "publisher": "Pustaka Pelajar",
      "authorNames": "Hari Purnomo"
    },
    {
      "city": "YOGYAKARTA",
      "isbn": "9786022291923",
      "year": 2001,
      "title": "Kimia Komputasi untuk Farmasi dan Ilmu Terkait",
      "source": "MANUAL",
      "coverUrl": "https://sinta.kemdiktisaintek.go.id/authorverification/public/images/books/_9786022291923.jpg",
      "claimedBy": [
        {
          "name": "HARI PURNOMO",
          "authorId": "6012096"
        }
      ],
      "publisher": "Pustaka Pelajar",
      "authorNames": "Hari Purnomo"
    }
  ],
  "limit": 10,
  "query": "kimia",
  "total": 3335,
  "hasMore": true,
  "nextPage": 2,
  "provider": "sinta"
}
GETCommunity Services/v1/research:sinta/community-servicesSINTA — community-service records (/comservices?q=&page=), the "pengabdian kepada masyarakat" ledger. Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id

Parameters

querystringoptional
Free-text search of the global index. Not accepted alongside authorId or affiliationId
pagenumberoptional
Page number for the global index, 10 records per page. Default 1
authorIdstringoptional
Read one researcher's community-service records instead of the global index
affiliationIdstringoptional
Read one institution's community-service records instead of the global index

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/community-services?query=kesehatan&page=1&authorId=42858&affiliationId=384" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 10,
  "items": [
    {
      "year": 2026,
      "title": "KOLABORASI SDGS INDONESIA - VIETNAM UNTUK PERTANIAN MASA DEPAN : PEMANFAATAN LIMBAH ORGANIK DAN KONSORSIUM MIKROORGANISME LOKAL (MOL) BAGI PRODUKSI PANGAN SEHAT BERKELANJUTAN DI DA…",
      "leader": "Sudarma Dita Wijayanti",
      "scheme": "PENELITIAN PNBP ( INT SDGS )",
      "source": null,
      "status": null,
      "personnel": [
        {
          "name": "Elok Waziiroh",
          "authorId": "6035529"
        },
        {
          "name": "Budi Waluyo",
          "authorId": "35463"
        }
      ],
      "fundAmount": 70000000
    },
    {
      "year": 2026,
      "title": "PEMBERDAYAAN UMKM PRONOJIWO MELALUI INTEGRITAS BUDIDAYA JAMUR DAN PENGOLAHAN SALAK BERBASIS KELOMPOK TANI DALAM RANGKA PENGUATAN LEGALITAS USAHA",
      "leader": "Dhiana Puspitawati",
      "scheme": "PENELITIAN PNBP ( DM 2026 )",
      "source": null,
      "status": null,
      "personnel": [
        {
          "name": "Asti Amelia Novita",
          "authorId": "6000884"
        },
        {
          "name": "Mujibur Rahman Khairul Muluk",
          "authorId": "6029338"
        }
      ],
      "fundAmount": 35000000
    }
  ],
  "limit": 10,
  "query": null,
  "scope": "affiliation",
  "total": null,
  "hasMore": false,
  "scopeId": "404",
  "nextPage": null,
  "provider": "sinta"
}
GETDepartments/v1/research:sinta/departmentsSINTA — study-programme listing (/departments?q=&page=), grouped by national programme code. Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id

Parameters

querystringoptional
Free-text programme search. Omit for the full index
pagenumberoptional
Page number, 10 programmes per page. Default 1

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/departments?query=teknik&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 10,
  "items": [
    {
      "url": "https://sinta.kemdiktisaintek.go.id/departments/affiliations/41001",
      "name": "Doktor Ilmu Teknik Pertanian",
      "level": "S3",
      "affiliations": [
        {
          "name": "Institut Pertanian Bogor",
          "affiliationId": "428"
        },
        {
          "name": "Universitas Gadjah Mada",
          "affiliationId": "384"
        }
      ],
      "departmentCode": "41001",
      "affiliationCount": 2
    },
    {
      "url": "https://sinta.kemdiktisaintek.go.id/departments/affiliations/28101",
      "name": "Ilmu Dan Teknik Material",
      "level": "S2",
      "affiliations": [
        {
          "name": "Universitas Sriwijaya",
          "affiliationId": "440"
        },
        {
          "name": "Institut Teknologi Bandung",
          "affiliationId": "379"
        }
      ],
      "departmentCode": "28101",
      "affiliationCount": 3
    }
  ],
  "limit": 10,
  "query": "teknik",
  "total": 330,
  "hasMore": true,
  "nextPage": 2,
  "provider": "sinta"
}
GETGoogle Scholar/v1/research:sinta/google-scholarSINTA — Google Scholar-sourced article records (/google?q=&page=). Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id

Parameters

querystringoptional
Free-text search of the global index. Not accepted alongside authorId or affiliationId
pagenumberoptional
Page number for the global index, 10 records per page. Default 1
authorIdstringoptional
Read one researcher's Scholar-indexed articles instead of the global index
affiliationIdstringoptional
Read one institution's Scholar-indexed articles instead of the global index

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/google-scholar?query=malaria&page=1&authorId=42858&affiliationId=384" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 10,
  "items": [
    {
      "url": "https://scholar.google.com/scholar?q=+intitle:'Penerapan Pengaturan Victim Impact Statement Pada Perkara Tindak Pidana Lingkungan Hidup Dalam Memenuhi Perlindungan Korban'",
      "year": 2035,
      "title": "Penerapan Pengaturan Victim Impact Statement Pada Perkara Tindak Pidana Lingkungan Hidup Dalam Memenuhi Perlindungan Korban",
      "authors": "FAK Aji, LR Bagaskoro",
      "citedByCount": 0,
      "publicationUrl": null,
      "publicationName": "RechtJiva, 2035"
    },
    {
      "url": "https://scholar.google.com/scholar?q=+intitle:'STUDI PERENCANAAN SISTEM PENYEDIAAN AIR BERSIH DI KECAMATAN SITUBONDO KABUPATEN SITUBONDO'",
      "year": 2029,
      "title": "STUDI PERENCANAAN SISTEM PENYEDIAAN AIR BERSIH DI KECAMATAN SITUBONDO KABUPATEN SITUBONDO",
      "authors": "AW Okyuvan, R Asmaranto, R Haribowo",
      "citedByCount": 0,
      "publicationUrl": null,
      "publicationName": null
    }
  ],
  "limit": 10,
  "query": null,
  "scope": "affiliation",
  "total": null,
  "hasMore": false,
  "scopeId": "404",
  "nextPage": null,
  "provider": "sinta"
}
GETInsight/v1/research:sinta/insightSINTA — national aggregate statistics. Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id and sinta.ristekbrin.go.id are DEAD names — a 0-19ms connect failure there is DNS, not a WAF.

Parameters

This endpoint takes no parameters.

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/insight" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "authors": 335086,
  "journals": 16774,
  "provider": "sinta",
  "departments": 2481,
  "affiliations": 5562
}
GETIprs/v1/research:sinta/iprsSINTA — intellectual-property listing (/iprs?q=&page=), patents, copyrights and industrial designs. Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id

Parameters

querystringoptional
Free-text search. The upstream index returns nothing for most terms
pagenumberoptional
Page number, 10 records per page. Default 1

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/iprs?query=bambu&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 0,
  "items": [],
  "limit": 10,
  "query": "bambu",
  "total": null,
  "hasMore": false,
  "nextPage": null,
  "provider": "sinta"
}
GETJournals/v1/research:sinta/journalsSINTA — accredited journal listing (/journals?q=&page=). Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id and sinta.ristekbrin.go.id are DEAD names — a 0-19ms connect failure there is DNS, not a WAF.

Parameters

querystringoptional
Free-text journal search. Omit for the full ranked index
pagenumberoptional
Page number, 10 journals per page. Default 1
sortenumoptional
Ranking order. Default impact Values: impact, h5Index, hIndex, citations, citations5Yr.

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/journals?query=kedokteran&page=1&sort=impact" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "sort": "impact",
  "count": 10,
  "items": [
    {
      "url": "https://sinta.kemdiktisaintek.go.id/journals/profile/2137",
      "name": "Jurnal Kedokteran dan Kesehatan Indonesia",
      "metrics": {
        "impact": 1.06,
        "h5Index": 20,
        "citations": 2380,
        "citations5Yr": 1678
      },
      "coverUrl": "https://scholar.googleusercontent.com/citations?view_op=medium_photo&user=McBFJloAAAAJ&citpid=2",
      "editorUrl": "https://journal.uii.ac.id/JKKI/about/editorialTeam",
      "garudaUrl": "https://garuda.kemdiktisaintek.go.id/journal/view/26021",
      "journalId": "2137",
      "printIssn": "20854145",
      "websiteUrl": "https://journal.uii.ac.id/JKKI",
      "subjectAreas": [
        "Health"
      ],
      "accreditation": "S1",
      "publisherName": "Fakultas Kedokteran, Universitas Islam Indonesia",
      "electronicIssn": "25272950",
      "googleScholarUrl": "https://scholar.google.co.id/citations?user=McBFJloAAAAJ&hl=en",
      "publisherAffiliationId": "382"
    }
  ],
  "limit": 10,
  "query": "kedokteran",
  "total": 81,
  "hasMore": true,
  "nextPage": 2,
  "provider": "sinta"
}
GETResearches/v1/research:sinta/researchesSINTA — funded research records (/researches?q=&page=). Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id and sinta.ristekbrin.go.id are DEAD names — a 0-19ms connect failure there is DNS, not a WAF.

Parameters

querystringoptional
Free-text search of the global index. Not accepted alongside authorId or affiliationId
pagenumberoptional
Page number for the global index, 10 records per page. Default 1
authorIdstringoptional
Read one researcher's funded research records instead of the global index
affiliationIdstringoptional
Read one institution's funded research records instead of the global index

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/researches?query=kesehatan&page=1&authorId=42858&affiliationId=384" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 10,
  "items": [
    {
      "year": 2026,
      "title": "Aplikasi Berbasis Data Smartwatch untuk Deteksi Dini Gangguan Kardiovaskuler dan Optimalisasi Gizi sebagai Penunjang Terapi",
      "leader": "Erna Susanti",
      "scheme": "Penelitian Kompetitif Nasional ( PFR )",
      "source": null,
      "status": null,
      "personnel": [
        {
          "name": "Nour Athiroh Abdoes Sjakoer",
          "authorId": "5977563"
        },
        {
          "name": "Endang Susilowati",
          "authorId": "6699891"
        }
      ],
      "fundAmount": 112210000
    },
    {
      "year": 2026,
      "title": "Pengembangan Model Sistem Simulasi Visual Digital Ruang Terbuka Perkotaan Berbasis AI untuk Smart City Kota Malang",
      "leader": "Herry Santosa",
      "scheme": "Penelitian Kompetitif Nasional ( PT-LM )",
      "source": null,
      "status": null,
      "personnel": [
        {
          "name": "Jenny Ernawati",
          "authorId": "6023159"
        },
        {
          "name": "Agung Setia Budi",
          "authorId": "6687913"
        }
      ],
      "fundAmount": 199880000
    }
  ],
  "limit": 10,
  "query": null,
  "scope": "affiliation",
  "total": null,
  "hasMore": false,
  "scopeId": "404",
  "nextPage": null,
  "provider": "sinta"
}
GETScopus/v1/research:sinta/scopusSINTA — Scopus-sourced article listing (/scopus?q=&page=). Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id

Parameters

querystringoptional
Free-text article search. Omit for the full index
pagenumberoptional
Page number, 10 articles per page. Default 1

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/scopus?query=malaria&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 10,
  "items": [
    {
      "url": "https://www.scopus.com/record/display.uri?eid=2-s2.0-0020731723&origin=resultslist",
      "year": 1983,
      "title": "The role of village malaria workers as village surveillance agents in Bekasi Regency, Indonesia.",
      "creator": "Lapau B.",
      "quartile": "Q3 Journal",
      "scopusId": "0020731723",
      "citedByCount": 3,
      "publicationUrl": null,
      "publicationName": "The Southeast Asian journal of tropical medicine and public health"
    },
    {
      "url": "https://www.scopus.com/record/display.uri?eid=2-s2.0-0021190679&origin=resultslist",
      "year": 1984,
      "title": "Corticosteroid in the treatment of cerebral malaria.",
      "creator": "Rampengan T.",
      "quartile": "no-Q Journal",
      "scopusId": "0021190679",
      "citedByCount": 0,
      "publicationUrl": null,
      "publicationName": "Paediatrica Indonesiana"
    }
  ],
  "limit": 10,
  "query": "malaria",
  "total": null,
  "hasMore": true,
  "nextPage": 2,
  "provider": "sinta"
}
GETSubjects/v1/research:sinta/subjectsSINTA — subject taxonomy (/subjects?q=&page=), the research fields authors claim. Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id

Parameters

querystringoptional
Free-text subject search. Omit for the full taxonomy
pagenumberoptional
Page number, 10 subjects per page. Default 1

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/subjects?query=biology&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 10,
  "items": [
    {
      "url": "https://sinta.kemdiktisaintek.go.id/subjects/detail/45828",
      "name": "Microbiology",
      "authors": [
        {
          "name": "MUHAMMAD MIFTAHUSSURUR",
          "authorId": "6031037"
        },
        {
          "name": "EFRI MARDAWATI",
          "authorId": "5980776"
        }
      ],
      "subjectId": "45828",
      "authorCount": 1509
    },
    {
      "url": "https://sinta.kemdiktisaintek.go.id/subjects/detail/45517",
      "name": "Biology",
      "authors": [
        {
          "name": "ETTY RIANI",
          "authorId": "6042420"
        },
        {
          "name": "RUDY AGUNG NUGROHO",
          "authorId": "5973879"
        }
      ],
      "subjectId": "45517",
      "authorCount": 1454
    }
  ],
  "limit": 10,
  "query": "biology",
  "total": 494,
  "hasMore": true,
  "nextPage": 2,
  "provider": "sinta"
}
GETWcu/v1/research:sinta/wcuSINTA — World Class University indicators (/wcu), the national research-performance series. Live host is sinta.kemdiktisaintek.go.id after the 2024 ministry split; sinta.kemdikbud.go.id

Parameters

indicatorstringoptional
Return only this indicator. Omit for every indicator on the page

Request

curl -X GET "https://api.zpi.web.id/v1/research:sinta/wcu?indicator=research_output2" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 1,
  "items": [
    {
      "title": "Paper Per Lecturer Per year",
      "series": [
        {
          "name": "Overall",
          "points": [
            {
              "year": 2016,
              "value": 77.75
            },
            {
              "year": 2017,
              "value": 103.54
            },
            {
              "year": 2018,
              "value": 153.92
            },
            {
              "year": 2019,
              "value": 166.54
            },
            {
              "year": 2020,
              "value": 165.33
            },
            {
              "year": 2021,
              "value": 157.65
            },
            {
              "year": 2022,
              "value": 139.13
            },
            {
              "year": 2023,
              "value": 1165.79
            }
          ]
        }
      ],
      "indicator": "research_output2"
    }
  ],
  "provider": "sinta"
}

Related APIs

More in research

PubMed

research/pubmed

NCBI E-utilities across 37 Entrez databases — literature search, summaries, full records, cross-database links, citation metrics and clinical trials.

115 calls·5m cache

Europe PMC

research/europepmc

Europe PMC life-science literature — search, citations, references, full text, books, supplementary files, text-mined annotations and grants.

54 calls·5m cache

Garuda

research/garuda

Garba Rujukan Digital — Indonesian scholarly articles, journals, authors and publishers with direct publisher PDF links.

23 calls·5m cache

DOAJ

research/doaj

Directory of Open Access Journals — article and journal search with full APC, licensing, peer-review and preservation metadata, plus OAI-PMH harvesting.

24 calls·5m cache

Google Maps Reviews

research/google-maps-reviews

Ambil ulasan Google Maps berdasarkan kata kunci/nama tempat. Mengembalikan detail tempat (rating, total ulasan, alamat, kategori) plus daftar ulasan publik (penulis, rating bintang, waktu, teks, foto, balasan pemilik). Mendukung paginasi & sortir (relevan/terbaru/tertinggi/terendah).

461 calls·10m cache

Google Scholar

research/google-scholar

Pencarian publikasi ilmiah Google Scholar + profil author (sitasi, h-index, daftar publikasi).

30 calls·1h cache
Browse APIsPricingDocsMCP serverGet an API key
zapi.One key, one response shape.
TermsPrivacyCookiesAUPRefunds© 2026