Loading…
NameRight provides procedural guidance, not legal advice.
Verify requirements with official courts and agencies. Full legal disclaimer
NameRight API reference - version 1.0.0
API documentation for the name-change management platform
https://www.nameright.app/apihttp://localhost:3000/api/checkoutCreate a checkout session for a plan; supports Creem and PayPal.
{
"plan": {
"type": "string",
"enum": [
"essential",
"complete",
"premium",
"advocate"
],
"default": "essential",
"description": "Plan type (essential and premium are legacy IDs; display labels map to Complete and Advocate)"
},
"provider": {
"type": "string",
"enum": [
"creem",
"paypal"
],
"default": "creem",
"description": "Payment provider"
}
}/checklist/generateGenerate a personalized name-change checklist based on the user profile
/statesGet name-change guidance for a specific state
code(query)- State code (e.g., CA, NY)/export/pdfGenerate and export a document as PDF
{
"type": {
"type": "string",
"description": "Document type"
},
"data": {
"type": "object",
"description": "Document data"
}
}/ai/chatChat with the AI assistant for name-change guidance
{
"message": {
"type": "string",
"maxLength": 2000
},
"context": {
"type": "object"
}
}/court-formsGet court-form templates for a specific state
state*(query)- /gift-codes/redeemRedeem a gift code to unlock plan access
{
"code": {
"type": "string",
"minLength": 8,
"maxLength": 32
}
}All authenticated endpoints use a Bearer Token (JWT) for authentication.
Authorization: Bearer <your_token>