Overview
GET/oauth/signin/startoauth

Begin the server redirect flow → 302 to the provider

List start.

Parameters
  • clientIdquerystring
  • providerIdquerystring
  • returnquerystring
Responses
302

redirect to provider

No response body.

400

Error

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