認証と無料トライアル サーバーから Authorization: Bearer YOUR_API_KEY を送信します。 YOUR_API_KEY を既存の GenderAPI キーに置き換えます。どちらのバージョンでも残高を共有します。個別の v2 サブスクリプションやキーは必要ありません。
すべての POST リクエストに Content-Type : application/json が必要です。既存の API キーを Bearer 認証で送信してください。各リクエストは独立して処理され、同じリクエストを再送した場合も通常の料金が適用されます。
GET /gender のみがキー クエリ パラメーターも受け入れます。 URL はブラウザーの履歴とログに保存できるため、統合には Authorization ヘッダーを推奨します。フロントエンドコードに秘密キーを入れないでください。
API キーが欠落しているか、無効な形式であるか認識されない場合、リクエストでは v1 と共有されている IP トライアルが使用されます。これは、無効になっている、期限切れになっている、または制限されている認識されたキーには適用されません。 meta.access.mode : api_key 、ip_trial 、または unauthenticated のアクセス モードを確認します。トライアル理由は、api_key_missing 、api_key_invalid 、または api_key_not_found です。したがって、無効なキーでも成功した試行応答を受け取ることができます。運用環境でのアクセス モードを確認します。
トライアル クレジットは 24 時間後にリセットされますが、必ずしも真夜中になるとは限りません。 resets_at を読み取るには、/usage を使用します。同じパブリック IP の背後にいる人々がこの手当を共有します。
API キーをセットアップします GenderAPI アカウントから API キーをコピーし、以下の YOUR_API_KEY を置き換えてください。設定したターミナルと同じセッションでサンプルを実行します。これらのコマンドで設定する環境変数は、そのセッション内でのみ有効です。記載されているプレースホルダーは実際に使えるキーではありません。
アプリケーションまたはデプロイメントの場合、GENDERAPI_API_KEY をサーバー側シークレットとして構成します。この例では、.env ファイルは自動的にロードされません。ブラウザ バンドル、ソース管理、パブリック URL にキーを含めないでください。
export GENDERAPI_API_KEY = 'YOUR_API_KEY' $ env: GENDERAPI_API_KEY = 'YOUR_API_KEY' Verify access without spending credits GET /usage を Bearer ヘッダーで呼び出します。有効なアカウント キーは、meta.access.mode : api_key を生成します。結果が ip_trial である場合は、予測を実行する前にコピーしたキーを確認してください。このリクエストは、クレジットが残っていないアカウントの場合も含めて無料です。
プログラミング言語を選択してください。 API キーをセットアップします , 次に、サーバー上でサンプルを実行します。
この残高照会ではクレジットを消費しません。ただし、リクエスト数の制限にはカウントされます。
実行する前に: アクセスとエラー処理 サンプルはサーバー側で実行してください。プロセスの環境変数 GENDERAPI_API_KEY に既存の API キーを設定し、meta.access.mode が api_key であることを確認します。認識されないキーの場合、IP トライアルに切り替わることがあります。
HTTP 4xx および 5xx JSON 応答はエラー本体を保持し、ゼロ以外の終了ステータスを返します。再試行する前に、code 、action 、および meta.usage.billing_status を確認してください。
エラーと再試行ガイド → cURL JavaScript Python PHP Java C# / .NET Go
curl --silent --show-error --fail-with-body --max-time 30 \
--request GET 'https://api.genderapi.io/api/v2/usage' \
--header "Authorization: Bearer ${ GENDERAPI_API_KEY :? Set GENDERAPI_API_KEY }" POSIX シェルの cURL 7.76+. ターミナルで実行します。 ランタイムドキュメント
// Server-side Node.js. Save as example.mjs.
const apiKey = process.env. GENDERAPI_API_KEY ;
if ( ! apiKey) throw new Error ( "Set GENDERAPI_API_KEY" );
const response = await fetch ( "https://api.genderapi.io/api/v2/usage" , {
method: "GET" ,
headers: {
Authorization: `Bearer ${ apiKey }` ,
},
signal: AbortSignal. timeout ( 30_000 ),
redirect: "error" ,
});
const raw = await response. text ();
if ( ! (response.headers. get ( "content-type" ) ?? "" ). includes ( "json" )) {
throw new Error ( `HTTP ${ response . status }: expected JSON; request ID ${ response . headers . get ( "x-request-id" ) }` );
}
const result = JSON . parse (raw); // Also accepts application/problem+json.
if ( ! response.ok) {
console. error ( `HTTP ${ response . status }` , result);
process.exitCode = 1 ; // A retry is a new operation; inspect billing first.
} else {
console. log ( JSON . stringify (result, null , 2 ));
// For batches, inspect every item: HTTP 200 may contain item errors.
} Node.js 22+;組み込みフェッチ. example.mjs として保存し、node example.mjs を実行します。 ランタイムドキュメント
import json
import os
import sys
import urllib.error
import urllib.request
api_key = os.environ.get( "GENDERAPI_API_KEY" )
if not api_key:
raise RuntimeError ( "Set GENDERAPI_API_KEY" )
class NoRedirect ( urllib . request . HTTPRedirectHandler ):
def redirect_request (self, req, fp, code, msg, headers, newurl):
return None
request = urllib.request.Request(
"https://api.genderapi.io/api/v2/usage" ,
method = "GET" ,
headers = {
"Authorization" : "Bearer " + api_key,
},
)
opener = urllib.request.build_opener(NoRedirect())
try :
response = opener.open(request, timeout = 30 )
except urllib.error.HTTPError as error:
response = error # Keep the Problem Details body on non-2xx responses.
with response:
status = response.status
raw = response.read().decode( "utf-8" )
if "json" not in response.headers.get( "Content-Type" , "" ):
raise RuntimeError ( f "HTTP { status } : expected a JSON response" )
result = json.loads(raw)
print (json.dumps(result, indent = 2 ), file = sys.stderr if status >= 300 else sys.stdout)
if not 200 <= status < 300 :
sys.exit( 1 ) # Inspect code, action and billing before retrying.
# For batches, inspect every item even when HTTP status is 200. Python 3.10+;標準ライブラリ. example.py として保存し、python3 example.py を実行します。 ランタイムドキュメント
<? php
$apiKey = getenv ( 'GENDERAPI_API_KEY' );
if ( ! $apiKey) {
throw new RuntimeException ( 'Set GENDERAPI_API_KEY' );
}
$ch = curl_init ( 'https://api.genderapi.io/api/v2/usage' );
curl_setopt_array ($ch, [
CURLOPT_CUSTOMREQUEST => 'GET' ,
CURLOPT_RETURNTRANSFER => true ,
CURLOPT_FOLLOWLOCATION => false ,
CURLOPT_TIMEOUT => 30 ,
CURLOPT_HTTPHEADER => [
'Authorization: Bearer ' . $apiKey,
],
]);
$raw = curl_exec ($ch);
if ($raw === false ) {
throw new RuntimeException ( curl_error ($ch));
}
$status = curl_getinfo ($ch, CURLINFO_HTTP_CODE );
$contentType = curl_getinfo ($ch, CURLINFO_CONTENT_TYPE ) ?: '' ;
curl_close ($ch);
if ( strpos ($contentType, 'json' ) === false ) {
throw new RuntimeException ( "HTTP $status : expected a JSON response" );
}
$result = json_decode ($raw, true , 512 , JSON_THROW_ON_ERROR );
$output = json_encode ($result, JSON_PRETTY_PRINT | JSON_THROW_ON_ERROR ) . PHP_EOL ;
if ($status < 200 || $status >= 300 ) {
fwrite ( STDERR , $output); // Preserve the Problem Details body.
exit ( 1 );
}
echo $output;
// For batches, inspect every item; HTTP 200 can contain item errors. PHP 8+ (cURL 拡張機能付き). example.php として保存し、php example.php を実行します。 ランタイムドキュメント
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.nio.charset.StandardCharsets;
import java.time.Duration;
public class GenderApiExample {
private static String requiredEnv (String name ) {
String value = System. getenv (name);
if (value == null || value. isBlank ()) throw new IllegalStateException ( "Set " + name);
return value;
}
public static void main ( String [] args ) throws Exception {
String apiKey = requiredEnv ( "GENDERAPI_API_KEY" );
HttpClient client = HttpClient. newBuilder ()
. connectTimeout (Duration. ofSeconds ( 10 ))
. followRedirects (HttpClient.Redirect.NEVER)
. build ();
HttpRequest request = HttpRequest. newBuilder (URI. create ( "https://api.genderapi.io/api/v2/usage" ))
. timeout (Duration. ofSeconds ( 30 ))
. header ( "Authorization" , "Bearer " + apiKey)
. GET ()
. build ();
HttpResponse < String > response = client. send (request,
HttpResponse.BodyHandlers. ofString (StandardCharsets.UTF_8));
if ( ! response. headers (). firstValue ( "content-type" ). orElse ( "" ). contains ( "json" )) {
throw new IllegalStateException ( "HTTP " + response. statusCode () + ": expected JSON" );
}
// JSON text; parse with your application's JSON library when integrating.
if (response. statusCode () < 200 || response. statusCode () >= 300 ) {
System.err. println (response. body ()); // Includes Problem Details.
System. exit ( 1 );
}
System.out. println (response. body ());
// For batches, inspect each item's data or error, including on HTTP 200.
}
} Java 17+;標準 HTTP クライアント. GenderApiExample.java として保存し、java GenderApiExample.java を実行します。 ランタイムドキュメント
using System ;
using System . Net . Http ;
using System . Net . Http . Headers ;
using System . Text ;
using System . Text . Json ;
string RequiredEnv ( string name ) =>
! string . IsNullOrWhiteSpace (Environment. GetEnvironmentVariable (name))
? Environment. GetEnvironmentVariable (name) !
: throw new InvalidOperationException ( $"Set { name } " );
var apiKey = RequiredEnv ( "GENDERAPI_API_KEY" );
using var handler = new HttpClientHandler { AllowAutoRedirect = false };
using var client = new HttpClient (handler) { Timeout = TimeSpan. FromSeconds ( 30 ) };
using var request = new HttpRequestMessage (HttpMethod.Get, "https://api.genderapi.io/api/v2/usage" );
request.Headers.Authorization = new AuthenticationHeaderValue ( "Bearer" , apiKey);
using var response = await client. SendAsync (request);
var raw = await response.Content. ReadAsStringAsync ();
if ( ! (response.Content.Headers.ContentType ? .MediaType ? . Contains ( "json" ) ?? false ))
throw new InvalidOperationException ( $"HTTP {( int ) response . StatusCode } : expected JSON" );
using var result = JsonDocument. Parse (raw);
if ( ! response.IsSuccessStatusCode)
{
Console.Error. WriteLine (result.RootElement); // Preserve Problem Details.
Environment.ExitCode = 1 ;
}
else
{
Console. WriteLine (result.RootElement);
// For batches, inspect every item even on HTTP 200.
} .NET 8+ コンソール アプリケーション. コンソール プロジェクトで Program.cs として使用し、dotnet run を実行します。 ランタイムドキュメント
package main
import (
" encoding/json "
" fmt "
" io "
" net/http "
" os "
" strings "
" time "
)
func requiredEnv ( name string ) string {
value := os. Getenv (name)
if value == "" { panic ( "Set " + name) }
return value
}
func run () error {
apiKey := requiredEnv ( "GENDERAPI_API_KEY" )
request, err := http. NewRequest ( "GET" , "https://api.genderapi.io/api/v2/usage" , nil )
if err != nil { return err }
request.Header. Set ( "Authorization" , "Bearer " + apiKey)
client := & http . Client {
Timeout: 30 * time.Second,
CheckRedirect: func ( req * http . Request , via [] * http . Request ) error {
return http.ErrUseLastResponse
},
}
response, err := client. Do (request)
if err != nil { return err }
defer response.Body. Close ()
raw, err := io. ReadAll (response.Body)
if err != nil { return err }
if ! strings. Contains (response.Header. Get ( "Content-Type" ), "json" ) || ! json. Valid (raw) {
return fmt. Errorf ( "HTTP %d : expected a JSON response" , response.StatusCode)
}
if response.StatusCode < 200 || response.StatusCode >= 300 {
return fmt. Errorf ( "HTTP %d : %s " , response.StatusCode, raw)
}
fmt. Println ( string (raw))
// For batches, inspect every item even on HTTP 200.
return nil
}
func main () {
if err := run (); err != nil {
fmt. Fprintln (os.Stderr, err) // Keep Problem Details for error handling.
os. Exit ( 1 )
}
} Go 1.22+;標準ライブラリ. main.go として保存し、go run main.go を実行します。 ランタイムドキュメント