Skip to main content

Partner API

Submit a partner inquiry to join the Agentbot partner program. Enterprise and AI provider applicants with a company name are automatically fast-tracked for 24-hour approval.

Authentication

EndpointAuth required
POST /api/partnerNone
This endpoint is rate-limited by client IP address. Excessive requests return a 429 status.

Submit partner inquiry

POST /api/partner
Submits a partner program inquiry. When the partner type is enterprise or ai_provider and a company name is provided, the inquiry is flagged for fast-track review with a 24-hour response commitment.

Request body

FieldTypeRequiredDescription
namestringYesFull name of the applicant
emailstringYesContact email address
companystringNoCompany or organization name. Required for fast-track eligibility.
websitestringNoCompany website URL
typestringNoPartner category. One of general, ai_provider, integration, reseller, content, infrastructure, or enterprise.
messagestringYesDetails about the partnership inquiry

Fast-track eligibility

An inquiry qualifies for fast-track processing when both conditions are met:
  1. The type is enterprise or ai_provider
  2. A company name is provided
Fast-tracked inquiries receive a guaranteed response within 24 hours.

Response

{
  "success": true,
  "fastTrack": true,
  "message": "Fast track enabled - we will respond within 24 hours"
}
FieldTypeDescription
successbooleanWhether the inquiry was submitted
fastTrackbooleanWhether the inquiry qualifies for fast-track review
messagestringConfirmation message. Includes the 24-hour response commitment when fastTrack is true.

Response (standard review)

When the inquiry does not qualify for fast-track processing, the response indicates standard review:
{
  "success": true,
  "fastTrack": false,
  "message": "We will be in touch soon"
}

Errors

CodeDescription
400name, email, or message is missing
429Rate limit exceeded
500Failed to send message

Partner types

TypeDescription
generalGeneral partnership inquiry
ai_providerAI model or service provider (fast-track eligible)
integrationTool or API integration partner
resellerReseller or agency partner
contentContent creator or developer advocate
infrastructureInfrastructure or hosting partner
enterpriseEnterprise partner (fast-track eligible)