Skip to main content
GET
/
v1
/
vinted
/
statuses
List Conditions
curl --request GET \
  --url https://api.example.com/v1/vinted/statuses
{
  "statuses": [
    {
      "id": 123,
      "title": "<string>"
    }
  ]
}

Query Parameters

market
string
default:"fr"
Vinted market. Status names are localized to the market language.

Response

statuses
array
Array of available item conditions.

Example Response

{
  "statuses": [
    {
      "id": 6,
      "title": "New with tags"
    },
    {
      "id": 1,
      "title": "New without tags"
    },
    {
      "id": 2,
      "title": "Very good"
    },
    {
      "id": 3,
      "title": "Good"
    },
    {
      "id": 4,
      "title": "Satisfactory"
    }
  ]
}
Each status list request costs 1 credit. Failed requests are not charged.