Create APIKey
📘 API Documentation: createApiKey Mutation
createApiKey Mutation🧠 Overview
🔐 Endpoint
🧾 Mutation Structure
graphqlCopyEditmutation CreateApiKey(
$firstName: String!,
$lastName: String!,
$email: String!,
$password: String!,
$privateKey: String!
) {
createApiKey(
firstName: $firstName,
lastName: $lastName,
email: $email,
password: $password,
privateKey: $privateKey
) {
key
wallet
queriesLeft
}
}📥 Required Parameters
Name
Type
Description
✅ Response Format
🧪 Code Examples
Python Example (Using requests)
requests)JavaScript Example (Using fetch)
fetch)🛑 Error Handling
Last updated