Free overview of the Name Intel service - see available analysis types
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://name-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Analyze a single name - get nationality, age, and gender predictions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1,
"description": "First name to analyze"
}
},
"required": [
"name"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://name-intel-production.up.railway.app/entrypoints/analyze-name/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"name": "<First name to analyze>"
}
}
'
Analyze multiple names at once (up to 10)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"names": {
"minItems": 1,
"maxItems": 10,
"type": "array",
"items": {
"type": "string"
},
"description": "Array of first names to analyze"
}
},
"required": [
"names"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://name-intel-production.up.railway.app/entrypoints/batch-names/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"names": [
"string"
]
}
}
'
Detailed nationality/origin analysis for a name
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1,
"description": "First name to analyze"
}
},
"required": [
"name"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://name-intel-production.up.railway.app/entrypoints/nationality/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"name": "<First name to analyze>"
}
}
'
Demographic analysis - age and gender predictions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1,
"description": "First name to analyze"
}
},
"required": [
"name"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://name-intel-production.up.railway.app/entrypoints/demographics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"name": "<First name to analyze>"
}
}
'
Comprehensive name profile with all data and insights
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1,
"description": "First name to analyze"
}
},
"required": [
"name"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://name-intel-production.up.railway.app/entrypoints/full-profile/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"name": "<First name to analyze>"
}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"description": "Time window in ms",
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://name-intel-production.up.railway.app/entrypoints/analytics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'
analytics-transactions
Invoke
Recent payment transactions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
},
"limit": {
"default": 50,
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://name-intel-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Export payment data as CSV
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://name-intel-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'