Overview
GET/registry/identifiers/{rdid}/existsregistry

Check whether an rdid is taken (never 404)

Fetch a record from exists by rdid.

Auth: bearerAuth — calls run as the authenticated user.

Parameters
  • rdidpathstring
Responses
200

existence

  • existsboolean
Example
{
  "exists": true
}
401

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/registry/identifiers/{rdid}/exists" \
  -H "Authorization: Bearer YOUR_TOKEN"
JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/registry/identifiers/{rdid}/exists", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN"
  },
});
const data = await res.json();