Get Users data

GET /api/v1/user/{id}

Path parameters

  • id string Required

    id of the user

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
    • id string Required

      Unique identifier for the user

    • created_at string Required

      Timestamp when the user was created

    • email string Required

      Email address of the user

    • first_name string Required

      First name of the user

    • last_name string Required

      Last name of the user

    • country string Required

      Country of the user

  • 404 application/json

    User Not Found

    Hide response attributes Show response attributes object
GET /api/v1/user/{id}
curl \
 -X GET https://api.crawlora.com/api/v1/user/{id}
Response examples (200)
{
  "id": "string",
  "created_at": "string",
  "email": "string",
  "first_name": "string",
  "last_name": "string",
  "country": "string"
}
Response examples (404)
{
  "is_error": true,
  "message": "string",
  "correlator_id": "string",
  "data": {}
}