action mastodon_get_api_proofs { label: "get_api_proofs" description: "View identity proof" provider: mastodon method: GET path: "/api/proofs" encoding: json input: { type: "object" properties: { provider: { type: "string" } username: { type: "string" } } additionalProperties: false } output: { description: "Represents a proof from an external identity provider." properties: { profile_url: { type: "string" description: "The account owner's profile URL on the identity provider." } proof_url: { type: "string" description: "A link to a statement of identity proof, hosted by the identity provider." } provider: { type: "string" description: "The name of the identity provider." } provider_username: { type: "string" description: "The account owner's username on the identity provider's service." } updated_at: { type: "string" description: "When the identity proof was last updated. ISO 8601 Datetime." } } } }