Cdn Public Collector's Pricing Guide (CPG) API V2

<back to all web services

GetPricingRequest

Pricing

Retrieve pricing data for a collectible.

The following routes are available for this service:
GET/GetPricingRequestGsid or Pcgs Number is required. Grade, MinGrade and MaxGrade are optional. Specify ApiLevel=Advanced for additional collectible information.
namespace Cdn.PublicApiV2.Dto

open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type BaseResponse() = 
        member val Total:Int32 = new Int32() with get,set
        member val OpCode:Int32 = new Int32() with get,set
        member val ErrorText:String = null with get,set
        member val RequestTime:String = null with get,set
        member val ResponseTime:String = null with get,set
        member val TotalExecutionTime:String = null with get,set
        member val CachedResponse:Boolean = new Boolean() with get,set
        member val PermitAccess:Boolean = new Boolean() with get,set
        member val AccessDeniedMessage:String = null with get,set

    [<AllowNullLiteral>]
    type CdnPricingItemDto() = 
        member val Grade:Int32 = new Int32() with get,set
        member val GradeLabel:String = null with get,set
        member val IsCac:Boolean = new Boolean() with get,set
        member val CpgVal:String = null with get,set
        member val GreyVal:String = null with get,set
        member val PcgsVal:String = null with get,set
        member val NgcVal:String = null with get,set
        member val BlueBookVal:String = null with get,set

    [<AllowNullLiteral>]
    type CdnPricingDataDto() = 
        member val GsId:Int64 = new Int64() with get,set
        member val Name:String = null with get,set
        member val SortingPosition:Int32 = new Int32() with get,set
        member val IsType:Boolean = new Boolean() with get,set
        member val IsSet:Boolean = new Boolean() with get,set
        member val UiParentId:Int64 = new Int64() with get,set
        member val PricingData:ResizeArray<CdnPricingItemDto> = null with get,set

    [<AllowNullLiteral>]
    type GetPricingResponse() = 
        inherit BaseResponse()
        member val Data:ResizeArray<CdnPricingDataDto> = null with get,set

    ///<summary>
    ///Retrieve pricing data for a collectible.
    ///</summary>
    [<Api(Description="Retrieve pricing data for a collectible.")>]
    [<AllowNullLiteral>]
    type GetPricingRequest() = 
        member val Gsid:Int64 = new Int64() with get,set
        member val PcgsNumber:String = null with get,set
        member val FrNumber:String = null with get,set
        member val Grade:Int32 = new Int32() with get,set
        member val MinGrade:Int32 = new Int32() with get,set
        member val MaxGrade:Int32 = new Int32() with get,set
        member val ApiLevel:String = null with get,set

F# GetPricingRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /GetPricingRequest HTTP/1.1 
Host: cpgpublicapiv2dev.greysheet.com 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<GetPricingResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cdn.PublicApiV2.ResponseObjects">
  <AccessDeniedMessage>String</AccessDeniedMessage>
  <CachedResponse>false</CachedResponse>
  <ErrorText>String</ErrorText>
  <OpCode>0</OpCode>
  <PermitAccess>false</PermitAccess>
  <RequestTime>String</RequestTime>
  <ResponseTime>String</ResponseTime>
  <Total>0</Total>
  <TotalExecutionTime>String</TotalExecutionTime>
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Cdn.PublicApiV2.Dto">
    <d2p1:CdnPricingDataDto>
      <d2p1:GsId>0</d2p1:GsId>
      <d2p1:IsSet>false</d2p1:IsSet>
      <d2p1:IsType>false</d2p1:IsType>
      <d2p1:Name>String</d2p1:Name>
      <d2p1:PricingData>
        <d2p1:CdnPricingItemDto>
          <d2p1:BlueBookVal>String</d2p1:BlueBookVal>
          <d2p1:CpgVal>String</d2p1:CpgVal>
          <d2p1:Grade>0</d2p1:Grade>
          <d2p1:GradeLabel>String</d2p1:GradeLabel>
          <d2p1:GreyVal>String</d2p1:GreyVal>
          <d2p1:IsCac>false</d2p1:IsCac>
          <d2p1:NgcVal>String</d2p1:NgcVal>
          <d2p1:PcgsVal>String</d2p1:PcgsVal>
        </d2p1:CdnPricingItemDto>
      </d2p1:PricingData>
      <d2p1:SortingPosition>0</d2p1:SortingPosition>
      <d2p1:UiParentId>0</d2p1:UiParentId>
    </d2p1:CdnPricingDataDto>
  </Data>
</GetPricingResponse>