---
title: "Deploy ERC-721 collection"
method: POST
path: "/v2/farcaster/nft/deploy/erc721/"
tags: ["Onchain"]
---

# Deploy ERC-721 collection

`POST /v2/farcaster/nft/deploy/erc721/`

Deploy a new ERC-721A (series) NFT collection.

## Headers

- `x-wallet-id` string, required

## Request body

- object
  - `description` string
  - `external_link` string
  - `image` string
  - `max_supply` integer — Max supply (0 = unlimited)
  - `mint_config` object
    - `end_timestamp` integer — Unix timestamp (defaults to no end date)
    - `max_per_tx` integer — Max tokens per transaction (0 = unlimited)
    - `max_per_wallet` integer — Max tokens per wallet (0 = unlimited)
    - `price_per_token` string — Price per token in wei (0 = free mint)
    - `start_timestamp` integer — Unix timestamp (defaults to current time)
  - `name` string, required
  - `network` 'base' | 'optimism' | 'base-sepolia', required
  - `royalty_bps` integer — Royalty in basis points (500 = 5%, max 2500 = 25%)
  - `royalty_recipient` string — Defaults to creator wallet
  - `symbol` string, required

## Response `201`

201

- object
  - `collection` object, required
    - `address` string, required — Ethereum address
    - `name` string, required
    - `network` 'base' | 'optimism' | 'base-sepolia', required
    - `symbol` string, required
    - `transaction_hash` string, required
    - `type` 'ERC721', required
  - `object` 'nft_collection', required

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `404` — Resource not found
- `500` — Server Error

---

[API](https://skmtc.net/neynar/apis/neynar-api.md) · [All operations](https://skmtc.net/neynar/apis/neynar-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/neynar/neynar-api/revisions/dbb91bfb0d1a/schema)
