INAPROCAPI Gateway
API v1SPSE / Non E-Purchasing

List peserta tender

Peserta Tender, dengan cursor pagination

GET
/api/v1/tender/peserta-tender

Query Parameters

kode_klpdinteger

Kode klpd yang akan diambil datanya.

tahuninteger

Tahun fiskal.

limit?integer

Jumlah maksimum baris yang dikembalikan (dibatasi maksimum 1000).

Default1
Range1 <= value <= 1000
cursor?string

Cursor dari meta.cursor pada respons sebelumnya.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "http://localhost:8080/api/v1/tender/peserta-tender?kode_klpd=0&tahun=0"
{
  "success": true,
  "data": [
    {
      "alasan": null,
      "kd_klpd": "KX",
      "kd_lpse": 12345,
      "kd_penyedia": 12345,
      "kd_peserta": 12345,
      "kd_pkt_dce": 12345,
      "kd_satker": "12345",
      "kd_satker_str": "12345",
      "kd_tender": 12345,
      "nama_penyedia": "Contoh Nama Penyedia",
      "nilai_penawaran": null,
      "nilai_terkoreksi": null,
      "npwp_penyedia": "",
      "npwp_penyedia_16": "12345",
      "pemenang": 0,
      "pemenang_terverifikasi": 0,
      "tahun_anggaran": 2024
    }
  ],
  "meta": {
    "limit": 0,
    "has_more": true,
    "cursor": "string"
  }
}

{
  "success": false,
  "error": {
    "code": "Bad Request",
    "message": "Invalid request",
    "details": "The SQL query is malformed"
  },
  "meta": {
    "request_id": "req-123456"
  }
}

{
  "success": false,
  "error": {
    "code": "Unauthorized",
    "message": "Unauthorized",
    "details": "Invalid or missing API key"
  },
  "meta": {
    "request_id": "req-123456"
  }
}

{
  "success": false,
  "error": {
    "code": "Forbidden",
    "message": "Forbidden",
    "details": "You are not allowed to access this resource"
  },
  "meta": {
    "request_id": "req-123456"
  }
}

{
  "success": false,
  "error": {
    "code": "Too Many Requests",
    "message": "Rate limit exceeded",
    "details": "Please retry later"
  },
  "meta": {
    "request_id": "req-123456"
  }
}

{
  "success": false,
  "error": {
    "code": "Internal Server Error",
    "message": "Internal server error",
    "details": "An unexpected error occurred"
  },
  "meta": {
    "request_id": "req-123456"
  }
}

{
  "success": false,
  "error": {
    "code": "Service Unavailable",
    "message": "Service unavailable",
    "details": "The data source is temporarily unavailable"
  },
  "meta": {
    "request_id": "req-123456"
  }
}