For the complete documentation index, see llms.txt. This page is also available as Markdown.

IsApprovedForAll

get

Checks if an operator is approved to manage all assets of a given owner.

Authorizations
AuthorizationstringRequired
Path parameters
ownerstringRequired
  • The address of the owner of the assets.
operatorstringRequired
  • The address of the operator to check for approval.
Query parameters
chainIdstringRequired
  • The ID of the blockchain network.
addressstringRequired
  • The address of the ERC721 contract.
Header parameters
AuthorizationstringRequired
  • The authorization token for the request.
Responses
200

A promise that resolves to an ERC721APIResponse indicating whether the operator is approved for all assets of the owner.

application/json

Interface representing the structure of the response from the ERC721 API.

successbooleanRequired

Indicates whether the API request was successful.

messagestringRequired

A message providing additional information about the API response.

dataanyOptional

Optional data returned by the API.

get/erc721/{owner}/{operator}/isApprovedForAll
GET /erc721/{owner}/{operator}/isApprovedForAll?chainId=text&address=text HTTP/1.1
Host: beta.usemoon.ai/
Authorization: text
Accept: */*
200

A promise that resolves to an ERC721APIResponse indicating whether the operator is approved for all assets of the owner.

{
  "success": true,
  "message": "text",
  "data": null
}