Make Money From Coding

Services API

List Services

Get all your consulting/coaching services.

Endpoint: GET /api/services

Response:

{
  "services": [
    {
      "id": 789,
      "title": "1-on-1 Coaching",
      "slug": "coaching",
      "description": "60-minute coaching session",
      "durationMinutes": 60,
      "price": 15000,
      "isPublished": true
    }
  ]
}

Create Service

Create a new service offering.

Endpoint: POST /api/services

Request Body:

{
  "title": "Technical Consultation",
  "description": "Expert technical advice",
  "durationMinutes": 30,
  "price": 7500,
  "isPublished": true
}
Services API