Skip to main content
Returns all providers available to your account, along with whether you have configured an API key for each one.
Agentity supports three providers: AGENTMAIL for email, AGENTPHONE for phone numbers, and PRIVACY for virtual cards. A provider must have isSet: true before you can use it when provisioning identities.

Response

providers
object[]
An array of provider objects.
curl https://api.agentity.to/providers \
  -H "Authorization: Bearer YOUR_JWT"
{
  "providers": [
    {
      "id": 1,
      "name": "AGENTMAIL",
      "selfManaged": true,
      "isSet": true
    },
    {
      "id": 2,
      "name": "AGENTPHONE",
      "selfManaged": true,
      "isSet": false
    },
    {
      "id": 3,
      "name": "PRIVACY",
      "selfManaged": true,
      "isSet": false
    }
  ]
}