# Get user info

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /user/{id}:
    get:
      summary: Get user info
      deprecated: false
      description: ''
      tags:
        - 'REST API Documentations/Example: Pet Store'
      parameters:
        - name: id
          in: path
          description: ''
          required: true
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  email:
                    type: string
                  phone:
                    type: string
                  address:
                    type: string
                  state:
                    type: string
                  country:
                    type: string
                  zipcode:
                    type: string
                  firstName:
                    type: string
                    description: name
                  familyName:
                    type: string
                  gender:
                    type: string
                  bio:
                    type: string
                  birthday:
                    type: string
                  userAgent:
                    type: string
                  id:
                    type: string
                    description: ID
                  city:
                    type: string
                x-apidog-orders:
                  - id
                  - firstName
                  - familyName
                  - email
                  - phone
                  - address
                  - city
                  - state
                  - country
                  - zipcode
                  - gender
                  - birthday
                  - bio
                  - userAgent
                required:
                  - id
                  - firstName
                  - email
                  - phone
                  - address
                  - state
                  - country
                  - zipcode
                  - gender
                  - familyName
                  - bio
                  - birthday
                  - userAgent
                  - city
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: 'REST API Documentations/Example: Pet Store'
      x-apidog-status: developing
      x-run-in-apidog: https://app.apidog.com/web/project/849209/apis/api-15105217-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
