Skip to content

Commit f39999f

Browse files
authored
Peter/new nft (#464)
* Adding Get Contracts by User * Updating the id
1 parent 869664a commit f39999f

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

data/v1.yaml

+57
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,46 @@ paths:
138138
schema:
139139
$ref: "#/components/schemas/ErrorResponse"
140140
operationId: get-nfts-by-address
141+
"/{apiKey}/assets/nfts/contracts/by-address":
142+
post:
143+
summary: Contracts By Owner
144+
description: >
145+
Retrieves all NFT contracts currently owned by multiple addresses using network and address pairs. This endpoint is supported on Ethereum and many L2s, including Polygon, Arbitrum, Optimism, Base, World Chain and more. See the full list of supported networks [here](https://dashboard.alchemy.com/chains?service=token-api&utm_source=readme&utm_medium=link&utm_campaign=docs_method_chains_link_v1_tokens).
146+
tags: ["🆕 Multi-Chain NFT APIs (Beta)"]
147+
x-readme:
148+
samples-languages:
149+
- javascript
150+
- curl
151+
- python
152+
- go
153+
parameters:
154+
- $ref: '#/components/schemas/apiKey'
155+
requestBody:
156+
required: true
157+
content:
158+
application/json:
159+
schema:
160+
$ref: "#/components/schemas/ByAddressRequestWithNFTOptions"
161+
responses:
162+
"200":
163+
description: Successful response!
164+
content:
165+
application/json:
166+
schema:
167+
$ref: "#/components/schemas/NFTByOwnerResponse"
168+
"400":
169+
description: 'Bad Request: Invalid input (e.g., malformed JSON).'
170+
content:
171+
application/json:
172+
schema:
173+
$ref: "#/components/schemas/ErrorResponse"
174+
"429":
175+
description: 'Too Many Requests: Rate limit exceeded.'
176+
content:
177+
application/json:
178+
schema:
179+
$ref: "#/components/schemas/ErrorResponse"
180+
operationId: get-nft-contracts-by-address
141181
####################################################
142182
# Transaction History API
143183
####################################################
@@ -865,6 +905,23 @@ components:
865905
acquiredAt:
866906
$ref: '../nft/nfts.yaml#/components/schemas/acquiredAt'
867907

908+
ContractsByOwnerResponse:
909+
type: object
910+
properties:
911+
data:
912+
type: object
913+
description: List of nfts by address with appropriate metadata.
914+
# No validAt for the multi-chain version, for now.
915+
contracts:
916+
type: array
917+
items:
918+
$ref: '../nft/nfts.yaml#/components/schemas/ownedContractv3'
919+
# totalCount:
920+
# $ref: '../nft/nfts.yaml#/components/schemas/totalNFTCount'
921+
# pageKey:
922+
# $ref: '../nft/nfts.yaml#/components/schemas/pageKey'
923+
required:
924+
- data
868925
####################################################
869926
# Transaction History APIs
870927
####################################################

0 commit comments

Comments
 (0)