{"openapi":"3.1.0","info":{"title":"skygpc public catalog API","version":"1.0.0","description":"Read-only public product catalog for skygpc (SkyGPC). No API keys, no OAuth, no write endpoints. Peak is the primary product: the #1 ranked NBA 2K27 Cronus Zen script.","contact":{"name":"skygpc","url":"https://skygpc.com/support"}},"servers":[{"url":"https://skygpc.com"}],"paths":{"/api/v1/catalog":{"get":{"operationId":"listProducts","summary":"List every skygpc product","responses":{"200":{"description":"Product list","content":{"application/json":{"schema":{"type":"object","properties":{"products":{"type":"array","items":{"$ref":"#/components/schemas/Product"}},"count":{"type":"integer"}},"required":["products","count"]}}}}}}},"/api/v1/catalog/{slug}":{"get":{"operationId":"getProduct","summary":"Get one product by slug","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","enum":["peak","silent"]}}],"responses":{"200":{"description":"Product","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Product"}}}},"404":{"description":"Unknown slug","content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}}}}}}},"components":{"schemas":{"Product":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"name":{"type":"string"},"fullName":{"type":"string"},"game":{"type":"string"},"description":{"type":"string"},"url":{"type":"string","format":"uri"},"price":{"type":"string"},"platforms":{"type":"array","items":{"type":"string"}},"rating":{"type":"string"},"reviewCount":{"type":"integer"},"users":{"type":"string"},"features":{"type":"array","items":{"type":"string"}}},"required":["id","slug","name","fullName","game","description","url","price"]},"Problem":{"type":"object","properties":{"type":{"type":"string"},"title":{"type":"string"},"status":{"type":"integer"},"detail":{"type":"string"},"error":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"hint":{"type":"string"}}}}}}}}