Skip to main content
GET
/
v1
/
certs
/
{grader}
/
{cert}
/
images
Get certificate images
curl --request GET \
  --url https://api.gemrate.com/v1/certs/{grader}/{cert}/images \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "grader": "psa",
    "cert": "<string>",
    "image_front": "<string>",
    "image_back": "<string>"
  },
  "meta": {
    "request_id": "req_abc123",
    "pagination": {
      "page": 1,
      "page_size": 100,
      "total": 1340,
      "total_pages": 14,
      "next_page": 2
    }
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

grader
enum<string>
required

The grading company. The grading company. Accepted values: psa, beckett, sgc, cgc. Common aliases are also accepted and normalized (e.g. bgs, bvg, bccgbeckett; csgcgc).

Available options:
psa,
beckett,
sgc,
cgc
Example:

"psa"

cert
string
required

The certificate number printed on the slab.

Example:

"12345678"

Response

Image URLs for the certificate.

data
object
meta
object

Metadata attached to every response.