> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapebadger.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Read mobile data

> Read public Vinted data, including sold comparables, pricing, reviews, categories and shipping references.

Send `market` and operation-specific `parameters` in the JSON body. Discover
operation names, types and examples with [List mobile operations](/api-reference/endpoint/vinted/mobile-operations).

The response contains `operation`, `market`, and upstream JSON in `data`.
Each successful read costs one credit; failed requests are free.

See [Vinted mobile data](/vinted/mobile-api) for every operation and CLI/MCP examples.


## OpenAPI

````yaml POST /v1/vinted/mobile/{operation}
openapi: 3.1.0
info:
  title: ScrapeBadger Vinted API
  version: 1.0.0
  description: >-
    Vinted marketplace scraping API for searching items, fetching details, user
    profiles, and reference data.
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/vinted/mobile/{operation}:
    post:
      tags:
        - Vinted
      summary: Read Vinted mobile data
      description: >-
        Read catalog, listing, seller, review, sold-comparable, pricing,
        reference,

        shipping-reference, homepage or help data. No Vinted account is
        required.

        This is an allowlisted read API, including read-only upstream POST
        queries.

        Returns operation, market, and the upstream JSON under data. One credit.

        Sold comparable prices are not guaranteed final negotiated sale prices.
      operationId: vinted_read_vinted_mobile_data
      parameters:
        - name: operation
          in: path
          required: true
          schema:
            type: string
            title: Operation
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VintedMobileReadRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                title: Response Read Mobile Data V1 Vinted Mobile  Operation  Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - apiKeyAuth: []
components:
  schemas:
    VintedMobileReadRequest:
      properties:
        market:
          type: string
          title: Market
          description: Vinted market code; uk aliases gb
          default: fr
        parameters:
          additionalProperties: true
          type: object
          title: Parameters
          description: >-
            Operation-specific parameters. GET /v1/vinted/mobile/operations
            lists types, required fields and examples.
          examples:
            - brand_id: '53'
              catalog_id: '1242'
              status_id: '2'
      additionalProperties: false
      type: object
      title: VintedMobileReadRequest
      description: Parameters are validated against the discoverable operation catalog.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````