Getting StartedAPI Reference
Getting StartedAPI Reference
  1. Users
  • Users
    • Get User
      GET
    • Onboard Business
      POST
    • Authenticate User
      GET
    • Delete User or Business
      DELETE
  • Wallet
    • Get Wallet Details
      GET
    • Topup wallet
      POST
  • Seed
    • Seed Leads
      POST
  • Campaign
    • Toggle Campaign Status
      PUT
  • Webhooks
    • Webhook Delivery
    • Events
      • website.eligibility
      • prospect.created
    • Webhoook Ops
      • Get all webhooks
      • Create Webhook Listener
      • Update Webhook Listener
      • Delete Webhook Listener
  1. Users

Get User

Developing
GET
/user/details
Search for a specific user or get all users.

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
Query Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠404Not Found
🟠401Unauthorised
🟠422Unprocessable Entity
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.inboundiq.ai/api/v1/user/details?email=' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{}'
Response Response Example
200 - Success
{
    "message": "User details fetched successfully",
    "data": {
        "userId": "9180b333-4874-4785-a380-a62d626b55fc",
        "email": "John Doe",
        "firstName": "John",
        "lastName": "Doe",
        "websites": [
            "https://example.com",
            "https://example2.com"
        ]
    }
}
Modified at 2025-12-12 14:07:41
Next
Onboard Business
Built with