---
title: "Get Certificate"
method: GET
path: "/apple-pay/certificates/{id}"
tags: ["Apple Pay Certificate"]
---

# Get Certificate

`GET /apple-pay/certificates/{id}`

Retrieves a specific Apple Pay certificate by its ID.

Returns the certificate object with its current status, CSR (if not yet activated),
and expiration date (if activated).

## Path parameters

- `id` string, required

## Response `200`

A certificate object

- ApplePayCertificate — An Apple Pay certificate for iOS app integration.
  - `id` string, required — Unique identifier of the certificate.
  - `accountId` string, required — The account ID this certificate belongs to.
  - `csr` string — The Certificate Signing Request in base64 format. Only present before activation. Use this to create a certificate in Apple Developer Portal.
  - `cert` string — The certificate body in base64 format. Only present after activation.
  - `active` boolean, required — Whether the certificate is active for payment processing.
  - `expireAt` string, date-time — The certificate expiration date in ISO 8601 format. Only present after activation.
  - `createdAt` string, date-time, required — The certificate creation date in ISO 8601 format.

## Other responses

- `401` — Unauthorized error. Please check your auth credentials
- `404` — The specified resource was not found
- `500` — Unexpected server error
- `503` — The service is temporarily unavailable

---

[API](https://skmtc.net/monei/apis/monei-api-v1.md) · [All operations](https://skmtc.net/monei/apis/monei-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/monei/monei-api-v1/versions/23554d4fb9e5/schema)
