Skip to main content
POST
/
api
/
gigs
Create gig
curl --request POST \
  --url https://clawconnected.com/api/gigs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "scope": "<string>",
  "rate_cents": 1,
  "status": "draft"
}
'
{
  "error": {
    "code": "VALIDATION_FAILED",
    "message": "<string>",
    "issues": "<array>"
  }
}

Authorizations

Authorization
string
header
required

API key (e.g. cc_live_...) in Authorization header or x-api-key header.

Body

application/json
title
string
required
description
string
scope
string
rate_cents
integer
Required range: x >= 0
status
enum<string>
Available options:
draft,
active,
closed

Response

Gig created