RemitPro - API International Remittance
  1. Area
RemitPro - API International Remittance
  • Getting Strated Guide
    • 1. Overview
    • 2. High Level Flow
    • 3. Supported Corridors
    • 4. Authorization & Scope
    • 5. Handle Error
    • 6. Signature
    • 7. API Host
    • 8. Pre-Integration Steps
    • 9. Doc Change Log
  • API Reference (V1)
    • Authentication
      • Generate Token
        POST
      • Refresh Token
        POST
    • Master Data
      • Onboarding
        • Overview
        • Id Type Personal
          GET
        • Id Types Business
          GET
        • Business Classification
          GET
        • Business Industry
          GET
        • Nature of Business
          GET
        • Business Entity
          GET
        • Document Types Personal
          GET
        • Document Types Business
          GET
        • Education
          GET
        • Gender
          GET
        • Marital Status
          GET
        • Nationalities
          GET
        • Occupation
          GET
        • Purpose Account
          GET
        • Salutation
          GET
        • User Position
          GET
        • Phone Prefix
          GET
        • Monthly Income
          GET
      • Area
        • Overview
        • Countries
          GET
        • Countries by Id
          GET
        • States
          GET
        • States by Id
          GET
        • City
          GET
        • City by Id
          GET
        • District
          GET
        • District by Id
          GET
        • Sub District
          GET
        • Sub District by Id
          GET
      • Transaction
        • Overview
        • Bank
        • Bank Branch
        • Bank Account Type
        • Business Classification
        • Business Industry
        • Nature of Business
        • Business Entity
        • Identity Types
        • Education
        • Gender
        • Marital Status
        • Nationalities
        • Occupation
        • Phone Prefix
        • Purpose of Payment
        • Recipient of Relationship
        • Source of Income
        • User Position
        • Work Status
    • Payout Cross Border
      • Sender
        • Overview
        • Business
          • Create Sender
          • Update Sender
          • Deactive
          • Reactive
          • Sender Detail
          • Sender List
          • History List
        • Personal
          • Create Sender
          • Update Sender
          • Deactive
          • Reactive
          • Sender Detail
          • Sender List
          • History List
      • Recipient
        • Overview
        • Business
          • Recipient Form
          • Create
          • Update
          • Deactive
          • Reactive
          • Recipient Detail
          • Recipient List
          • History List
        • Personal
          • Recipient Form
          • Create
          • Update
          • Deactive
          • Reactive
          • Recipient Detail
          • Recipient List
          • History List
      • Quotes
        • Enquire Quotes
        • Quote List
        • Quote Detail
      • Transaction
        • Create Transaction
        • Transaction Status
        • Transaction List
        • Transaction Detail
    • Onbording Member
      • Overview
      • Business
        • Get Business Document
        • Create Member
        • Update
        • Deactive
        • Reactive
        • Member List
        • Member Detail
        • History List
      • Personal
        • Create Member
        • Update
        • Deactive
        • Reactive
        • Member List
        • Member Detail
        • History List
    • Wallet
      • Overview
      • Own Wallet
      • Wallet Member List
      • Wallet Member Detail
      • Get Own Wallet Histories
      • Get Member Wallet Histories
    • Virtual Account
      • Create Virtual Account
      • Virtual Account List
      • Virtual Account Detail
      • Top Up Simulation
    • Webhook
      • Overview
      • Webhook Category
      • Webhook URL Submission
      • Get Webhook URL List
      • Update
      • Deactive
  1. Area

City

Developing
GET
/api/v1/partner/master/area/city/idn/{state_id}
Retrieves a list of cities or regencies within a specific state or province.
This endpoint is intended only for Indonesia (IDN). For other country codes, do not call this endpoint — you may enter the information freely as text.

Request

Path Params

Query Params

Header Params

Responses

🟢200Success
application/json
Body

🟠400Invalid Data
🟠400Invalid Data
🟠401Unauthorized
🟠404Resource Not Found
🟠404Data Not Found
🟠401Token Expired
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/partner/master/area/city/idn/f2f60f74-a9ad-4f3e-8722-a8a7532b4bd7?page=1&limit=5' \
--header 'Authorization: {{token}}' \
--header 'ClientSecret: {{ClientSecret}}' \
--header 'Signature: {{signature}}' \
--header 'Date: {{dateRequest}}'
Response Response Example
200 - Success
{
    "status": 200,
    "serviceStatus": "2001400",
    "titleCode": "success",
    "title": "Success",
    "detail": "Processed successfully",
    "responseTime": "2025-09-16T08:54:05",
    "data": [
        {
            "country": {
                "id": "cdaa110d-9079-4573-a6a8-a428dd16a6ae",
                "name": "Indonesia",
                "code": "IDN"
            },
            "state": {
                "id": "f2f60f74-a9ad-4f3e-8722-a8a7532b4bd7",
                "name": "DKI JAKARTA"
            },
            "city": {
                "id": "14c06ca0-b95e-4504-a521-d7de3d9c58bb",
                "name": "KEPULAUAN SERIBU"
            }
        },
        {
            "country": {
                "id": "cdaa110d-9079-4573-a6a8-a428dd16a6ae",
                "name": "Indonesia",
                "code": "IDN"
            },
            "state": {
                "id": "f2f60f74-a9ad-4f3e-8722-a8a7532b4bd7",
                "name": "DKI JAKARTA"
            },
            "city": {
                "id": "5352fed7-1514-466a-a85c-982dc2f053d5",
                "name": "JAKARTA TIMUR"
            }
        },
        {
            "country": {
                "id": "cdaa110d-9079-4573-a6a8-a428dd16a6ae",
                "name": "Indonesia",
                "code": "IDN"
            },
            "state": {
                "id": "f2f60f74-a9ad-4f3e-8722-a8a7532b4bd7",
                "name": "DKI JAKARTA"
            },
            "city": {
                "id": "62b389c6-a313-4282-b594-261b3991841c",
                "name": "JAKARTA UTARA"
            }
        },
        {
            "country": {
                "id": "cdaa110d-9079-4573-a6a8-a428dd16a6ae",
                "name": "Indonesia",
                "code": "IDN"
            },
            "state": {
                "id": "f2f60f74-a9ad-4f3e-8722-a8a7532b4bd7",
                "name": "DKI JAKARTA"
            },
            "city": {
                "id": "83f5f978-b5cb-4d90-8554-064fa2f2e7ec",
                "name": "JAKARTA SELATAN"
            }
        },
        {
            "country": {
                "id": "cdaa110d-9079-4573-a6a8-a428dd16a6ae",
                "name": "Indonesia",
                "code": "IDN"
            },
            "state": {
                "id": "f2f60f74-a9ad-4f3e-8722-a8a7532b4bd7",
                "name": "DKI JAKARTA"
            },
            "city": {
                "id": "903f7262-6097-476f-ae80-ffbade1a1baa",
                "name": "JAKARTA BARAT"
            }
        },
        {
            "country": {
                "id": "cdaa110d-9079-4573-a6a8-a428dd16a6ae",
                "name": "Indonesia",
                "code": "IDN"
            },
            "state": {
                "id": "f2f60f74-a9ad-4f3e-8722-a8a7532b4bd7",
                "name": "DKI JAKARTA"
            },
            "city": {
                "id": "d8c6d990-9eac-4cba-b9b4-7b7a1ae2fb80",
                "name": "JAKARTA PUSAT"
            }
        }
    ],
    "pagination": {
        "limit": 20,
        "page": 1,
        "totalRecords": 6,
        "totalPages": 1,
        "links": {
            "self": "https://api-gateway-dev.remitpro.asia/api/v1/partner/master/area/city/idn/f2f60f74-a9ad-4f3e-8722-a8a7532b4bd7?page=1&limit=20",
            "last": "https://api-gateway-dev.remitpro.asia/api/v1/partner/master/area/city/idn/f2f60f74-a9ad-4f3e-8722-a8a7532b4bd7?page=1&limit=20"
        }
    }
}
Modified at 2025-10-29 11:53:00
Previous
States by Id
Next
City by Id
Built with