DBLPLink 2.0

Home

About

API

Contact

Reflex

API Documentation

DBLPLink 2.0 provides a RESTful API for entity linking tasks.

You can interact with the following endpoints:

Example: Calling the /link_entities endpoint using curl:

curl -X POST https://restapi.dblplink-2.skynet.coypu.org/link_entities \
  -H "Content-Type: application/json" \
  -d '{
        "question": "Which papers were published by Debayan Banerjee in SIGIR?",
        "text_match_only": false
      }' 

Sample JSON response:

{
  "entitylinkingresults": [
    {
      "label": "Debayan Banerjee",
      "result": [
        [-12.822916666666666, [
          "https://dblp.org/pid/213/7475",
          "Debayan Banerjee",
          "https://dblp.org/rdf/schema#Creator",
          "Debayan Banerjee and Jagannath Singh: Prediction of Stroke Risk Factors for Better Pre-emptive Healthcare: A Public-Survey-Based Approach. (2019) — createdBy — Debayan Banerjee"
        ]],
        [-13.72265625, [
          "https://dblp.org/pid/392/9280",
          "Debayan Bandyopadhyay",
          "https://dblp.org/rdf/schema#Creator",
          "Pei Zeng et al.: Towards efficient and secure quantum-classical communication networks. (2024) — authoredBy — Debayan Bandyopadhyay"
        ]]
        // ... more results
      ],
      "type": "person"
    },
    {
      "label": "SIGIR",
      "result": [
        [-12.490234375, [
          "https://dblp.org/streams/conf/sigir",
          "Annual International ACM SIGIR Conference",
          "https://dblp.org/rdf/schema#Stream",
          "Xinghua Zhang et al.: Exploring Modular Task Decomposition in Cross-domain Named Entity Recognition. (2022) — publishedInStream — SIGIR"
        ]]
        // ... more results
      ],
      "type": "venue"
    }
  ],
  "predictedlabelspans": [
    "Debayan Banerjee : person",
    "SIGIR : venue"
  ],
  "question": "Which papers were published by Debayan Banerjee in SIGIR?"
}

Built with Reflex