These are observations, not accusations. A band of LOW, MEDIUM or HIGH describes how much of what we check we were able to confirm — it is not a judgement about the operator of an endpoint. Every signal, its weight and its rationale are published on the methodology page, and any operator can claim an endpoint, correct a fact or opt out.
What does this x402 endpoint charge?
1000 (atomic units) per request
https://palmyr.ai/social/twitter/pool/mineWIRE_FORMS_DISAGREEBoth wire forms were served and they describe different terms.
Endpoint
| URL | https://palmyr.ai/social/twitter/pool/mine |
|---|---|
| Canonical | https://palmyr.ai/social/twitter/pool/mine |
| Endpoint id | 9c268538756665575c039969d61e4919 |
| HTTP status | 402 |
| Latency | 342 ms |
| Redirects | 0 |
| TLS | handshake okThe negotiated TLS version is not exposed to a Worker. |
| Wire form | both the v2 header and a v1 body |
| Bytes read | 2765 |
| Strict decoder | accepteddecodePaymentRequired, imported from tx402 — the same code the SDK runs before it pays. |
Payment
accepted by the decoderThese terms were accepted by the strict decoder tx402 uses before it pays.
| Price | 1000 (atomic units) |
|---|---|
| Amount (atomic) | 1000 |
| Scheme | exact |
| Network | solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp in manifestRecognized means present in the tx402 signed release manifest. Nothing more is claimed. |
| Asset | Palmyr EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v not in manifestRecognized means present in the tx402 signed release manifest. Nothing more is claimed. |
| Pay to | GqSs5L9aPWGJwyRQe35YKQaWMDPh3R1dMqfSEPhSgkM |
| Pay to declared dynamic | nox402 v2 has no on-the-wire declaration of a dynamic payTo, so this is usually unobservable. |
| Authorization window | 60s |
| Resource | https://palmyr.ai/social/twitter/pool/mine |
| MIME type | application/json |
| Description | List pool-bought X accounts your wallet owns or has shared access to. |
| Facilitator | https://palmyr.ai/x402 |
This endpoint offers 2 ways to pay. The card above describes the first, which is the order the server stated its own preference in.
| Alternative 2 | 0.001000 USDC · eip155:8453 · exact |
|---|
Risk
Band: LOW 87/100 · v1 · static_onlyA band describes how much of what we check we were able to confirm. It is not a judgement about the operator of an endpoint.
- Result: pass 25 The challenge decodes under the strict x402 decoder tx402 uses before paying. challenge_decodes
- Result: pass 15 The challenge describes the endpoint that served it. resource_origin_match
- Result: pass 12 The amount is a canonical atomic integer. amount_canonical
- Result: pass 12 The recipient is a well-formed address for the declared network. pay_to_wellformed
- Result: pass 8 The network is in the tx402 signed release manifest. network_recognized
- Result: warn 8 The asset is not in the tx402 signed release manifest for this network. asset_recognized
- Result: warn 6 The facilitator is not on the published list. facilitator_known
- Result: pass 6 The payment scheme is one tx402 can route. scheme_known
- Result: pass 5 The endpoint was reached over a valid TLS connection. tls_ok
- Result: pass 4 The authorization window is within the maximum tx402 will sign for. timeout_sane
- Result: pass 3 No redirect downgraded the connection. redirect_scheme_downgrade
- Result: pass 3 The endpoint serves the x402 v2 header form. wire_form
- Result: skip — Not evaluable, so it was not scored. amount_magnitude_band
Security
2 to look at
A check that could not run reports skip, and a skip is never counted as a pass.
- Result: pass wire_form_detected Served as both.
- Result: pass base64_strict The strict decoder accepted the header's base64 framing.
- Result: pass json_wellformed
- Result: pass x402_version_known Declared x402Version 2.
- Result: pass accepts_present The challenge offers 2 ways to pay.
- Result: pass size_within_limit Read 2765 bytes, within the probe's cap.
- Result: pass network_caip2_wellformed network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
- Result: pass network_recognized Recognized means present in the tx402 signed release manifest.
- Result: warn asset_recognized Recognized means present in the tx402 signed release manifest.
- Result: pass amount_atomic_canonical
- Result: pass amount_positive
- Result: pass pay_to_wellformed
- Result: pass max_timeout_sane
- Result: pass resource_origin_match
- Result: pass scheme_known
- Result: warn facilitator_known On the published list. That is the whole claim.
- Result: pass mime_type_wellformed mimeType: application/json
- Result: pass extra_wellformed `extra` carries 3 field(s), preserved verbatim.
- Result: skip amount_within_observed_range needs our data No prior observations of this endpoint.
- Result: skip recipient_matches_observed needs our data No prior observations of this endpoint.
Observed
| First seen | 2026-08-15T04:00:12Z |
|---|---|
| Last seen | 2026-08-15T14:37:38Z |
| Scans recorded | 3 |
| Availability (30d) | not measured yet |
| Latency p50 | not measured yet |
| 2026-08-15T06:30:45Z | availability_state: status unreachable → active |
|---|---|
| 2026-08-15T06:30:45Z | first_seen: challenge_hash — → cec34c88e0ce5aa760a074e105ffcafcfd472e79751137057b1c389455b2fbb6 |
Test with tx402 →
Pre-filled with this endpoint's real terms. Your signer stays in your process — this service never sees a key, never asks for one, and cannot build a payment.
# This endpoint's amount or asset could not be read, so --max-spend is left for you to set.
npx tx402 call "https://palmyr.ai/social/twitter/pool/mine" \
--network "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp" \
--dry-run
# --dry-run stops after the policy decision. Nothing is signed and nothing is spent.
import { createTx402Client } from "tx402";
// Your signer stays in your process. tools.tx402.io never sees a key,
// never asks for one, and cannot build a payment.
import { signers } from "./signers.js";
const tx402 = createTx402Client({
signers,
policy: {
// The observed amount could not be read as canonical money — set your own cap.
allowedDomains: ["palmyr.ai"],
allowedNetworks: ["solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp"],
},
});
// Policy and budget are committed before the signer is reachable, so a
// refusal here is a payment that was never authorized.
const response = await tx402.fetch("https://palmyr.ai/social/twitter/pool/mine");
from tx402 import Tx402Client, Policy
# Your signer stays in your process. tools.tx402.io never sees a key,
# never asks for one, and cannot build a payment.
tx402 = Tx402Client(
solana_signer=solana,
policy=Policy(
# The observed amount could not be read as canonical money — set your own cap.
allowed_domains=["palmyr.ai"],
allowed_networks=["solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp"],
),
)
# Policy and budget are committed before the signer is reachable, so a
# refusal here is a payment that was never authorized.
response = tx402.fetch("https://palmyr.ai/social/twitter/pool/mine")
curl -sS 'https://tools.tx402.io/api/v1/inspect?url=https%3A%2F%2Fpalmyr.ai%2Fsocial%2Ftwitter%2Fpool%2Fmine'
# The same result as Markdown, for a terminal or an agent:
curl -sS -H 'Accept: text/markdown' 'https://tools.tx402.io/inspect?url=https%3A%2F%2Fpalmyr.ai%2Fsocial%2Ftwitter%2Fpool%2Fmine'
The challenge, as served
Public data: the endpoint serves this to anyone who asks. It is shown exactly as it arrived, truncated to the documented cap.
eyJ4NDAyVmVyc2lvbiI6MiwicmVzb3VyY2UiOnsidXJsIjoiaHR0cHM6Ly9wYWxteXIuYWkvc29jaWFsL3R3aXR0ZXIvcG9vbC9taW5lIiwiZGVzY3JpcHRpb24iOiJMaXN0IHBvb2wtYm91Z2h0IFggYWNjb3VudHMgeW91ciB3YWxsZXQgb3ducyBvciBoYXMgc2hhcmVkIGFjY2VzcyB0by4iLCJtaW1lVHlwZSI6ImFwcGxpY2F0aW9uL2pzb24iLCJzZXJ2aWNlTmFtZSI6IlBhbG15ciBTb2NpYWwiLCJ0YWdzIjpbInNvY2lhbCIsInR3aXR0ZXIiLCJ4IiwicG9vbCIsIm1pbmUiXSwiaWNvblVybCI6Imh0dHBzOi8vcGFsbXlyLmFpL2Fzc2V0cy9iYXphYXItaWNvbi5wbmcifSwiYWNjZXB0cyI6W3sic2NoZW1lIjoiZXhhY3QiLCJuZXR3b3JrIjoic29sYW5hOjVleWt0NFVzRnY4UDhOSmRUUkVwWTF2enFLcVpLdmRwIiwiYW1vdW50IjoiMTAwMCIsInBheVRvIjoiR3FTczVMOWFQV0dKd3lSUWUzNVlLUWFXTURQaDNSMWRNcWZTRVBoU2drTSIsIm1heFRpbWVvdXRTZWNvbmRzIjo2MCwiYXNzZXQiOiJFUGpGV2RkNUF1ZnFTU3FlTTJxTjF4enliYXBDOEc0d0VHR2tad3lURHQxdiIsImV4dHJhIjp7Im5hbWUiOiJQYWxteXIiLCJmYWNpbGl0YXRvciI6Imh0dHBzOi8vcGFsbXlyLmFpL3g0MDIiLCJmZWVQYXllciI6IjRSNjdNV2l2dmM1Mmc5QlN6UVJ2UXlEOEdzaHR0VzFRTGJuajQ2dXNCcmNRIn0sImV4dGVuc2lvbnMiOnsiYmF6YWFyIjp7ImRpc2NvdmVyYWJsZSI6dHJ1ZSwiY2F0ZWdvcnkiOiJzb2NpYWwiLCJ0YWdzIjpbInR3aXR0ZXIiLCJ4IiwicG9vbCIsIm1pbmUiXSwic2NoZW1hIjp7InByb3BlcnRpZXMiOnsiaW5wdXQiOnsicHJvcGVydGllcyI6eyJxdWVyeVBhcmFtcyI6eyJ0eXBlIjoib2JqZWN0IiwiYWRkaXRpb25hbFByb3BlcnRpZXMiOnRydWV9fX0sIm91dHB1dCI6eyJwcm9wZXJ0aWVzIjp7ImV4YW1wbGUiOnsidHlwZSI6Im9iamVjdCIsImFkZGl0aW9uYWxQcm9wZXJ0aWVzIjp0cnVlfX19fX0sImluZm8iOnsiaW5wdXQiOnsidHlwZSI6Imh0dHAiLCJtZXRob2QiOiJHRVQiLCJxdWVyeVBhcmFtcyI6e319LCJpbnB1dFNjaGVtYSI6eyJwcm9wZXJ0aWVzIjp7InF1ZXJ5UGFyYW1zIjp7InR5cGUiOiJvYmplY3QiLCJhZGRpdGlvbmFsUHJvcGVydGllcyI6dHJ1ZX19LCJyZXF1aXJlZCI6W119LCJvdXRwdXQiOnsiZXhhbXBsZSI6e319fX19fSx7InNjaGVtZSI6ImV4YWN0IiwibmV0d29yayI6ImVpcDE1NTo4NDUzIiwiYW1vdW50IjoiMTAwMCIsInBheVRvIjoiMHg3OWU5OTllMmY5ZDU0MTdGMjgwM2YxZDg4NjAyYUIxRUE0MzIzODgxIiwibWF4VGltZW91dFNlY29uZHMiOjYwLCJhc3NldCI6IjB4ODMzNTg5ZkNENmVEYjZFMDhmNGM3QzMyRDRmNzFiNTRiZEEwMjkxMyIsImV4dHJhIjp7Im5hbWUiOiJVU0QgQ29pbiIsInZlcnNpb24iOiIyIiwiZmFjaWxpdGF0b3IiOiJodHRwczovL2FwaS5jZHAuY29pbmJhc2UuY29tL3BsYXRmb3JtL3YyL3g0MDIifSwiZXh0ZW5zaW9ucyI6eyJiYXphYXIiOnsiZGlzY292ZXJhYmxlIjp0cnVlLCJjYXRlZ29yeSI6InNvY2lhbCIsInRhZ3MiOlsidHdpdHRlciIsIngiLCJwb29sIiwibWluZSJdLCJzY2hlbWEiOnsicHJvcGVydGllcyI6eyJpbnB1dCI6eyJwcm9wZXJ0aWVzIjp7InF1ZXJ5UGFyYW1zIjp7InR5cGUiOiJvYmplY3QiLCJhZGRpdGlvbmFsUHJvcGVydGllcyI6dHJ1ZX19fSwib3V0cHV0Ijp7InByb3BlcnRpZXMiOnsiZXhhbXBsZSI6eyJ0eXBlIjoib2JqZWN0IiwiYWRkaXRpb25hbFByb3BlcnRpZXMiOnRydWV9fX19fSwiaW5mbyI6eyJpbnB1dCI6eyJ0eXBlIjoiaHR0cCIsIm1ldGhvZCI6IkdFVCIsInF1ZXJ5UGFyYW1zIjp7fX0sImlucHV0U2NoZW1hIjp7InByb3BlcnRpZXMiOnsicXVlcnlQYXJhbXMiOnsidHlwZSI6Im9iamVjdCIsImFkZGl0aW9uYWxQcm9wZXJ0aWVzIjp0cnVlfX0sInJlcXVpcmVkIjpbXX0sIm91dHB1dCI6eyJleGFtcGxlIjp7fX19fX19XSwiZXh0ZW5zaW9ucyI6eyJiYXphYXIiOnsiZGlzY292ZXJhYmxlIjp0cnVlLCJjYXRlZ29yeSI6InNvY2lhbCIsInRhZ3MiOlsidHdpdHRlciIsIngiLCJwb29sIiwibWluZSJdLCJzY2hlbWEiOnsicHJvcGVydGllcyI6eyJpbnB1dCI6eyJwcm9wZXJ0aWVzIjp7InF1ZXJ5UGFyYW1zIjp7InR5cGUiOiJvYmplY3QiLCJhZGRpdGlvbmFsUHJvcGVydGllcyI6dHJ1ZX19fSwib3V0cHV0Ijp7InByb3BlcnRpZXMiOnsiZXhhbXBsZSI6eyJ0eXBlIjoib2JqZWN0IiwiYWRkaXRpb25hbFByb3BlcnRpZXMiOnRydWV9fX19fSwiaW5mbyI6eyJpbnB1dCI6eyJ0eXBlIjoiaHR0cCIsIm1ldGhvZCI6IkdFVCIsInF1ZXJ5UGFyYW1zIjp7fX0sImlucHV0U2NoZW1hIjp7InByb3BlcnRpZXMiOnsicXVlcnlQYXJhbXMiOnsidHlwZSI6Im9iamVjdCIsImFkZGl0aW9uYWxQcm9wZXJ0aWVzIjp0cnVlfX0sInJlcXVpcmVkIjpbXX0sIm91dHB1dCI6eyJleGFtcGxlIjp7fX19fX0sImRlc2NyaXB0aW9uIjoiTGlzdCBwb29sLWJvdWdodCBYIGFjY291bnRzIHlvdXIgd2FsbGV0IG93bnMgb3IgaGFzIHNoYXJlZCBhY2Nlc3MgdG8uIiwibWltZVR5cGUiOiJhcHBsaWNhdGlvbi9qc29uIn0=
SHA-256 of the canonicalized challenge: cec34c88e0ce5aa760a074e105ffcafcfd472e79751137057b1c389455b2fbb6
Raw signals
The exact input the scoring function was given. A signal we could not determine has
observed: false and contributes nothing to the score — it is never counted as a failure.
[
{
"id": "probe_ok",
"value": true,
"observed": true,
"detail": null
},
{
"id": "challenge_served",
"value": true,
"observed": true,
"detail": null
},
{
"id": "challenge_decodes",
"value": true,
"observed": true,
"detail": null
},
{
"id": "wire_form",
"value": "both",
"observed": true,
"detail": null
},
{
"id": "x402_version",
"value": 2,
"observed": true,
"detail": null
},
{
"id": "tls_ok",
"value": true,
"observed": true,
"detail": null
},
{
"id": "tls_protocol",
"value": null,
"observed": false,
"detail": "The negotiated TLS version is not exposed to the probe."
},
{
"id": "redirect_count",
"value": 0,
"observed": true,
"detail": null
},
{
"id": "redirect_scheme_downgrade",
"value": false,
"observed": true,
"detail": "Cross-scheme redirects are refused."
},
{
"id": "resource_origin_match",
"value": true,
"observed": true,
"detail": null
},
{
"id": "network_recognized",
"value": true,
"observed": true,
"detail": "Recognized means present in the tx402 signed release manifest."
},
{
"id": "asset_recognized",
"value": false,
"observed": true,
"detail": "Recognized means present in the tx402 signed release manifest."
},
{
"id": "facilitator_known",
"value": false,
"observed": true,
"detail": "On the published list. That is the whole claim."
},
{
"id": "amount_canonical",
"value": true,
"observed": true,
"detail": null
},
{
"id": "amount_magnitude_band",
"value": "unknown",
"observed": true,
"detail": null
},
{
"id": "pay_to_wellformed",
"value": true,
"observed": true,
"detail": null
},
{
"id": "pay_to_declared_dynamic",
"value": false,
"observed": true,
"detail": null
},
{
"id": "timeout_sane",
"value": true,
"observed": true,
"detail": null
},
{
"id": "scheme_known",
"value": true,
"observed": true,
"detail": null
},
{
"id": "requirement_count",
"value": 2,
"observed": true,
"detail": null
},
{
"id": "challenge_size_bytes",
"value": 2765,
"observed": true,
"detail": null
},
{
"id": "first_seen_age_days",
"value": null,
"observed": false,
"detail": "No history yet."
},
{
"id": "scan_count",
"value": null,
"observed": false,
"detail": "No history yet."
},
{
"id": "availability_30d",
"value": null,
"observed": false,
"detail": "No history yet."
},
{
"id": "latency_p50_ms",
"value": null,
"observed": false,
"detail": "No history yet."
},
{
"id": "price_changes_90d",
"value": null,
"observed": false,
"detail": "No history yet."
},
{
"id": "recipient_changes_90d",
"value": null,
"observed": false,
"detail": "No history yet."
},
{
"id": "recipient_unstable_undeclared",
"value": null,
"observed": false,
"detail": "No history yet."
},
{
"id": "terms_changed_within_24h",
"value": null,
"observed": false,
"detail": "No history yet."
}
]