Unlock Protocol Verifier API
The Verifier API from Unlock Protocol — 3 operation(s) for verifier.
The Verifier API from Unlock Protocol — 3 operation(s) for verifier.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/unlock-protocol-verifier-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Unlock Locksmith Applications Verifier API
version: '2'
description: Locksmith provides backend functionality for enabling ticketing, metadata storage, and notification hooks.
license:
name: MIT
servers:
- url: https://locksmith.unlock-protocol.com
description: Production Server
- url: https://staging-locksmith.unlock-protocol.com
description: Staging Server
tags:
- name: Verifier
paths:
/v2/api/verifier/list/{network}/{lockAddress}:
get:
deprecated: true
operationId: verifiers
security:
- User:
- lockManager
description: List of verifiers for the lock address. (deprecated in favor of eventVerifiers)
parameters:
- $ref: '#/components/parameters/Network'
- $ref: '#/components/parameters/LockAddress'
responses:
200:
description: list of verifier address.
content:
application/json:
schema:
type: object
properties:
results:
type: array
items:
$ref: '#/components/schemas/Verifier'
204:
$ref: '#/components/responses/204.Empty'
403:
$ref: '#/components/responses/403.NotAuthenticatedOrAuthorized'
500:
$ref: '#/components/responses/500.InternalError'
tags:
- Verifier
/v2/api/verifier/{network}/{lockAddress}/{verifierAddress}:
put:
deprecated: true
operationId: createVerifier
security:
- User:
- lockManager
description: Create verifier. (deprecated in favor of addEventVerifier)
parameters:
- $ref: '#/components/parameters/Network'
- $ref: '#/components/parameters/LockAddress'
- $ref: '#/components/parameters/VerifierAddress'
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
verifierName:
type: string
description: optional verifier name
responses:
201:
description: Added verifier.
content:
application/json:
schema:
$ref: '#/components/schemas/Verifier'
403:
$ref: '#/components/responses/403.NotAuthenticatedOrAuthorized'
409:
$ref: '#/components/responses/409.Conflict'
500:
$ref: '#/components/responses/500.InternalError'
tags:
- Verifier
delete:
deprecated: true
operationId: deleteVerifier
security:
- User: []
description: Remove verifier. (deprecated in favor of deleteEventVerifier)
parameters:
- $ref: '#/components/parameters/Network'
- $ref: '#/components/parameters/LockAddress'
- $ref: '#/components/parameters/VerifierAddress'
responses:
200:
description: List of remaining verifiers.
content:
application/json:
schema:
type: object
properties:
results:
type: array
items:
$ref: '#/components/schemas/Verifier'
403:
$ref: '#/components/responses/403.NotAuthenticatedOrAuthorized'
404:
$ref: '#/components/responses/404.NotFound'
500:
$ref: '#/components/responses/500.InternalError'
tags:
- Verifier
/v2/api/verifier/{network}/lock/{lockAddress}/address/{verifierAddress}:
get:
deprecated: true
operationId: verifier
security:
- User:
- lockManager
description: Check if an address is a verifier of the lock. (deprecated in favor of eventVerifier)
parameters:
- $ref: '#/components/parameters/Network'
- $ref: '#/components/parameters/LockAddress'
- $ref: '#/components/parameters/VerifierAddress'
responses:
200:
description: Address is a verifier on the lock address.
content:
application/json:
schema:
type: object
properties:
enabled:
type: boolean
default: true
403:
$ref: '#/components/responses/403.NotAuthenticatedOrAuthorized'
404:
$ref: '#/components/responses/404.NotFound'
500:
$ref: '#/components/responses/500.InternalError'
tags:
- Verifier
components:
responses:
404.NotFound:
description: The item you are making request for does not exist.
content:
application/json:
schema:
$ref: '#/components/schemas/GenericNotFound'
204.Empty:
description: No response. Request acknowledged.
409.Conflict:
description: There is a conflict. The resource already exist.
content:
application/json:
schema:
$ref: '#/components/schemas/GenericServerError'
403.NotAuthenticatedOrAuthorized:
description: User is not authorized to perform this action.
content:
application/json:
schema:
$ref: '#/components/schemas/NotAuthenticated'
500.InternalError:
description: Unable to fullfil request due to internal server error.
content:
application/json:
schema:
$ref: '#/components/schemas/GenericServerError'
parameters:
VerifierAddress:
in: path
name: verifierAddress
required: true
description: User address to use as verifier
schema:
type: string
LockAddress:
in: path
name: lockAddress
required: true
description: Lock address.
schema:
type: string
Network:
in: path
name: network
required: true
description: Network id.
schema:
type: integer
schemas:
NotAuthenticated:
type: object
properties:
message:
type: string
default: You are not authorized or authenticated to perform this action.
Verifier:
type: object
required:
- address
properties:
address:
type: string
lockAddress:
type: string
lockManager:
type: string
network:
type: integer
name:
type:
- string
- 'null'
GenericServerError:
type: object
properties:
message:
type: string
default: There was an error in fullfiling the request.
GenericNotFound:
type: object
properties:
message:
type: string
default: resource not found
securitySchemes:
User:
type: http
scheme: bearer
bearerFormat: JWT
Application:
type: apiKey
name: api-key
in: query