Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion content/api-reference/data/nft-api/nft-api-endpoints.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ slug: reference/nft-api-endpoints
| **Endpoint** | **What to use it for** |
| -------------------------------------------------- | ------------------------------------------------------------ |
| [isSpamContract](/docs/reference/nft-api-endpoints/nft-api-endpoints/nft-spam-endpoints/is-spam-contract-v-3) | Returns whether a specific contract is marked as spam or not |
| [reportSpam](/docs/reference/nft-api-endpoints/nft-api-endpoints/nft-spam-endpoints/report-spam-v-3) | Report a contract if you think its spam |

# NFT Sales Endpoints

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ We want builders to be able to use as much of the NFT API as they need without w
{/* cu:auto product="nft" */}
| Method | CU | Throughput CU |
| ------------------------ | --- | ------------- |
| reportSpam | 0 | 10 |
| refreshNftMetadata | 40 | 10 |
| computeRarity | 80 | 10 |
| getFloorPrice | 80 | 10 |
Expand Down
5 changes: 4 additions & 1 deletion content/redirects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ redirects:
permanent: true

- source: /docs/reference/nft-api-endpoints/nft-api-endpoints/nft-api-v-2-methods-older-version/report-spam
destination: /docs/reference/nft-api-endpoints/nft-api-endpoints/nft-spam-endpoints/report-spam-v-3
destination: /docs/reference/nft-api-endpoints
permanent: true

# NFT API method deprecations (see 2026-08-18 changelog)
Expand Down Expand Up @@ -141,6 +141,9 @@ redirects:
- source: /docs/reference/nft-api-endpoints/nft-api-endpoints/nft-sales-endpoints/get-nft-sales-v-3
destination: /docs/reference/nft-api-endpoints
permanent: true
- source: /docs/reference/nft-api-endpoints/nft-api-endpoints/nft-spam-endpoints/report-spam-v-3
destination: /docs/reference/nft-api-endpoints
permanent: true

# ========================================= Portfolio API Redirects =========================================
- source: /docs/reference/get-tokens-by-address
Expand Down
33 changes: 0 additions & 33 deletions src/openapi/nft/nft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -495,39 +495,6 @@ paths:
withMetadata:
$ref: "#/components/examples/withMetadataGetContractsForOwner_response"
operationId: getContractsForOwner-v3
"/v3/{apiKey}/reportSpam":
get:
summary: Report Spam Address
description: |
Reports a specific address to the API if it is suspected to be spam.

<Note>Spam NFT functionality is available on Mainnet for the following chains: Base, Arbitrum, Optimism, Ethereum, Polygon, Worldchain, Avax, BNB, Gnosis, Zksync, Unichain, and Blast. More to come soon!</Note>
tags: ["NFT Spam Endpoints"]
parameters:
- $ref: "#/components/parameters/apiKey"
- name: address
description: String - The address to check for spam status.
in: query
schema:
type: string
default: "0x495f947276749ce646f68ac8c248420045cb7b5e"
required: true
- name: isSpam
in: query
required: true
schema:
type: boolean
description: "Whether the address is spam."
default: true
responses:
"200":
description: "Returns a confirmation message if the address was successfully reported as spam."
content:
application/json:
schema:
type: string
description: 'String - "Address was successfully reported as spam" if calling the API was successful.'
operationId: reportSpam-v3
"/v3/{apiKey}/refreshNftMetadata":
post:
summary: Refresh NFT Metadata
Expand Down
Loading