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.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
943 msmedian answer time
$0.01listed price per call
$0.01price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://convrgent.ai/api/vault/create
| Category | Market data |
|---|---|
| Provider host | convrgent.ai |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 943 ms |
Example input (from the provider)
{
"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 \u2014 it's about communication expectations."
}
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$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 \u2014 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"
}