Create a new persistent human profile in the vault
Create a new persistent human profile in the vault. Agent-namespaced by wallet address. Accepts initial identity, text samples, observations, and birth data.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-14
updated
Provider
convrgent.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xc273630dB49632EcD077C7dF606B306E400A9882",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "7jw5Bfxo8muSQk9ZGXWvoYQ7newrT52zF8VPXV5ao6fS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"birthData": {
"day": 15,
"hour": 14,
"location": "New York, NY",
"minute": 30,
"month": 6,
"year": 1990
},
"human_id": "alice-chen-001",
"name": "Alice Chen",
"textSamples": [
{
"text": "I've been thinking about this from multiple angles. The core issue isn't technical — it's about communication expectations."
}
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"created": true,
"frameworks_computed": [
"natal-chart",
"communication"
],
"human_id": "alice-chen-001",
"stored_signals": {
"observations": 0,
"textSamples": 1
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"birthData": {
"properties": {
"day": {
"type": "integer"
},
"hour": {
"description": "Highly recommended. Defaults to 12 if omitted.",
"type": "integer"
},
"latitude": {
"description": "Optional override",
"type": "number"
},
"location": {
"description": "City and country. Coordinates auto-resolved.",
"type": "string"
},
"longitude": {
"description": "Optional override",
"type": "number"
},
"minute": {
"description": "Defaults to 0 if omitted.",
"type": "integer"
},
"month": {
"type": "integer"
},
"timezone": {
"description": "Optional — auto-resolved from location",
"type": "number"
},
"year": {
"type": "integer"
}
},
"required": [
"year",
"month",
"day",
"location"
],
"type": "object"
},
"context": {
"type": "object"
},
"human_id": {
"description": "Agent-chosen unique identifier for this human",
"type": "string"
},
"name": {
"type": "string"
},
"observations": {
"type": "object"
},
"textSamples": {
"items": {
"properties": {
"context": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"human_id"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"bodyType",
"body",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://convrgent.ai/api/vault/create" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://convrgent.ai/api/vault/create");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://convrgent.ai/api/vault/create")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/13474.json, and this resource appears in /discovery/resources and /discovery/search.