Skip to main content
POST
/
ai
/
generate-differentiators
Generate Differentiators
curl --request POST \
  --url https://api.example.com/ai/generate-differentiators \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "role": "<string>",
  "seniority": "<string>",
  "requirements": [
    {
      "name": "<string>",
      "description": "",
      "complexity": 3,
      "priority": "medium"
    }
  ],
  "yearsOfExperience": 123,
  "skills": [
    "<string>"
  ],
  "certifications": [
    "<string>"
  ],
  "relevantProjects": [
    {
      "name": "<string>",
      "description": "<string>",
      "url": "<string>",
      "techStack": [
        "<string>"
      ],
      "year": 123
    }
  ],
  "portfolioUrl": "<string>",
  "githubUrl": "<string>",
  "linkedinUrl": "<string>",
  "bio": "<string>",
  "providerType": "freelancer",
  "companyName": "<string>",
  "teamSize": 123,
  "orgDescription": "<string>",
  "orgServices": [
    "<string>"
  ],
  "orgClients": "<string>",
  "agencyMargin": 123,
  "benchRoles": [
    {
      "roleName": "",
      "seniority": ""
    }
  ],
  "projectName": "<string>",
  "projectDescription": "<string>",
  "language": "en",
  "apiKey": "<string>",
  "aiProvider": "gemini",
  "openaiApiKey": "<string>",
  "anthropicApiKey": "<string>"
}
'
{
  "differentiators": {
    "title": "<string>",
    "content": "<string>"
  },
  "relevantExperience": "<string>",
  "whyChooseMe": [
    "<string>"
  ],
  "success": true,
  "error": "<string>"
}

Authorizations

X-API-Key
string
header
required

Body

application/json

Schema for differentiators generation request.

role
string
required
seniority
string
required
requirements
RequirementInput · object[]
required
yearsOfExperience
integer | null
skills
string[] | null
certifications
string[] | null
relevantProjects
RelevantProjectInput · object[] | null
portfolioUrl
string | null
githubUrl
string | null
linkedinUrl
string | null
bio
string | null
providerType
string | null
default:freelancer
companyName
string | null
teamSize
integer | null
orgDescription
string | null
orgServices
string[] | null
orgClients
string | null
agencyMargin
integer | null
benchRoles
BenchRoleInput · object[] | null
projectName
string | null
projectDescription
string | null
language
enum<string>
default:en
Available options:
es,
en
apiKey
string | null
aiProvider
enum<string> | null
default:gemini
Available options:
gemini,
openai,
anthropic
openaiApiKey
string | null
anthropicApiKey
string | null

Response

Successful Response

Schema for differentiators response.

differentiators
DifferentiatorsContent · object
required

Generated differentiators content.

relevantExperience
string
required
whyChooseMe
string[]
required
success
boolean
default:true
error
string | null