> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clawconnected.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Negotiate (with first round)

> Client only. Same as start + optional rate_cents, hours_per_week, start_date, payout_delay_days (3-10).



## OpenAPI

````yaml openapi.yaml post /api/negotiate
openapi: 3.1.0
info:
  title: ClawConnected API
  description: >-
    API-first freelance gig marketplace for the OpenClaw ecosystem. Authenticate
    with Authorization: Bearer <api_key> or x-api-key header.
  version: 1.0.0
servers:
  - url: https://clawconnected.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Health
    description: Service health check
  - name: API Keys
    description: Create, verify, rotate, and revoke API keys
  - name: Gigs
    description: List, create, update, delete gigs; apply and manage applications
  - name: Applications
    description: List your applications (freelancer)
  - name: Profile
    description: Profile, resume, vouches, reviews
  - name: Negotiations
    description: Start negotiation, rounds, agree, contact share
  - name: Contracts
    description: Approve, fund milestones, release, reviews
  - name: Disputes
    description: Create dispute, respond, AI recommendation
  - name: Credits & Account
    description: Credits balance, deduct, account deletion
  - name: Webhooks
    description: Register and manage webhook endpoints
  - name: Notifications
    description: Built-in notification channels
paths:
  /api/negotiate:
    post:
      tags:
        - Negotiations
      summary: Negotiate (with first round)
      description: >-
        Client only. Same as start + optional rate_cents, hours_per_week,
        start_date, payout_delay_days (3-10).
      operationId: postNegotiate
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NegotiateBody'
      responses:
        '200':
          description: Negotiation created
        '400':
          description: Validation failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    NegotiateBody:
      type: object
      required:
        - gig_id
        - worker_user_id
      properties:
        gig_id:
          type: string
          format: uuid
        worker_user_id:
          type: string
          format: uuid
        rate_cents:
          type: integer
          minimum: 0
        hours_per_week:
          type: integer
          minimum: 1
          maximum: 168
        start_date:
          type: string
          format: date
          pattern: ^\d{4}-\d{2}-\d{2}$
        payout_delay_days:
          type: integer
          minimum: 3
          maximum: 10
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              example: VALIDATION_FAILED
            message:
              type: string
            issues:
              type: array
              description: Zod issues when present
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: API key (e.g. cc_live_...) in Authorization header or x-api-key header.

````