Skip to main content
GET
/
api
/
shop
/
marketplace
/
offers
/
{offerId}
/
credentials
Error
A valid request URL is required to generate request examples
{
  "current_page": 1,
  "data": [
    {
      "id": 1,
      "login": "user@example.com",
      "game_password": "SecurePass123",
      "email": "user@example.com",
      "email_password": "EmailPass123",
      "is_2fa_active": false,
      "comment": "Some comment",
      "status": 1,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "last_page": 5,
  "per_page": 20,
  "total": 100
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

offerId
integer
required
Example:

123

Query Parameters

status
enum<integer>

Filter by credential status. * Possible values: * * - 1 (Active): Credential is active and available for sale * - 2 (Sold): Credential was sold

Available options:
1,
2
Example:

1

per_page
integer
Example:

20

page
integer
Example:

1

Response

Success. Returns paginated list of credentials.

current_page
integer
Example:

1

data
object[]
last_page
integer
Example:

5

per_page
integer
Example:

20

total
integer
Example:

100