microAI
Get started
microAI
AIs
Name Prediction
Name Prediction
It guesses the nationality and gender from the entered name.
入力された氏名から、国籍、性別を推測します。
Demo
API
Name to be predicted
Send name to be predicted.
Nationality
国籍
-
Loading...
Gender
性別
-
Loading...
Duration
処理時間
-
Loading...
Tokens
トークン数
-
Loading...
Detail
See the API documentation for details.
curl
JavaSript
curl
"https://api.microai.jp/v1/prediction/name"
\
-H
"Content-Type: application/json"
\
-H
"Authorization: Bearer {{Your microAI API Key}}"
\
-d
'{ "spec": "low", "mane": "織田信長" }'
const
response =
await
fetch
(
'https://api.microai.jp/v1/prediction/name'
, {
method
:
'POST'
,
headers
: {
'Content-Type'
:
'application/json'
,
'Authorization'
:
'Bearer {{Your microAI API Key}}'
},
body
:
JSON
.
stringify
({
spec
:
"low"
,
name
:
"織田信長"
}) });