/v1/search/producers
Search producers/developers
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/vndb-api/v1/search/producers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vndb-api/v1/search/producers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vndb-api/v1/search/producers");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/vndb-api/v1/search/producers",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"more": true,
"count": 20,
"query": "key",
"producers": [
{
"id": "p24",
"url": "https://vndb.org/p24",
"lang": "ja",
"name": "Key",
"type": "co",
"aliases": [
"キー"
],
"original": null,
"description": "Key is a Japanese visual novel studio known for making dramatic and plot-oriented titles. It was formed on July 21, 1998, as a brand under the publisher Visual Arts, and is located in Kita, Osaka.\n\nCo-founder Jun Maeda is a prominent figure in the brand, having contributed to the planning, scenario, and music composition in the majority of Key's visual novels. Na-Ga, Key's main artist, mainly worked with background art in earlier games, but with Key's sixth game Little Busters! (2007) was given the position of co-art director with former Key artist Itaru Hinoue. Shinji Orito, Key's main composer and another co-founder, has composed music for the majority of Key's titles.\n\nKey has been an active participant at the Comiket convention since Comiket 57 in 1999, where they sold Kanon-related products; Key's latest appearance at Comiket was at Comiket 99 in 2021. In 2001, Visual Arts created the record label Key Sounds Label to release music albums and singles with music related to Key's visual novels. Between 2007 and 2010, Key produced an Internet radio show called Key Net Radio in regard to the brand.\n\n\n[From [url=http://en.wikipedia.org/wiki/Key_(company)]Wikipedia[/url]]"
},
{
"id": "p720",
"url": "https://vndb.org/p720",
"lang": "zh",
"name": "Key Fans Club",
"type": "ng",
"aliases": [
"KFC",
"KeyFansClub",
"KeyFC"
],
"original": null,
"description": "Early Chinese Key fans' gathering point."
},
{
"id": "p1392",
"url": "https://vndb.org/p1392",
"lang": "ja",
"name": "Digital Monkey",
"type": "co",
"aliases": [
"デジタルモンキー",
"Dennou Saru"
],
"original": "電脳猿",
"description": "[url=http://web.archive.org/web/20020819110942/http://www.digital-monkey.com/cgi/diaryj/diaryj.cgi]Staff blog archive[/url]"
},
{
"id": "p1874",
"url": "https://vndb.org/p1874",
"lang": "es",
"name": "Key Spanish Fanclub",
"type": "ng",
"aliases": [],
"original": null,
"description": "Spanish community dedicated to translating Key games english translations to spanish."
…