Skip to main content

POST /v1/ip/register

Body Parameters

ParameterTypeRequiredDescription
creator_idstringID of the creator who owns this IP
titlestringTitle of the work
typestringType: song, script, book, artwork, concept, other
content_hashstringSHA-256 hash of the content
descriptionstringDescription of the work

Example Request

curl -X POST https://api.boobie.ai/v1/ip/register \
  -H "Authorization: Bearer YOUR_BOOBIE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "creator_id": "cr_abc123",
    "title": "Song Title",
    "type": "song",
    "content_hash": "sha256:abc123..."
  }'

Response

{
  "id": "ip_abc123",
  "creator_id": "cr_abc123",
  "title": "Song Title",
  "type": "song",
  "timestamp": "2026-06-12T09:00:00Z",
  "certificate_id": "cert_xyz789",
  "status": "registered"
}