Getting StartedAPI Reference
Getting StartedAPI Reference
  1. Seed
  • 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. Seed

Seed Leads

Developing
POST
/seed/lead
Visitor payload schema taken from https://support.rb2b.com/en/articles/8976614-setup-guide-webhook.
More data can be added to the visitors object as we have made it as unstructured data.

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.inboundiq.ai/api/v1/seed/lead' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "website": "inboundiq.ai",
    "visitors": [
        {
            "linkedInUrl": "https://www.linkedin.com/in/retentionadam/",
            "firstName": "Adam",
            "lastName": "Robinson",
            "title": "CEO @ Retention.com. We help Ecomm brands grow & monetize their first-party audience",
            "companyName": "Retention.com",
            "businessEmail": "adam@retention.com",
            "website": "https://retention.com",
            "industry": "Internet Technology & Services",
            "employeeCount": "1-10",
            "estimateRevenue": "$22M rev",
            "city": "Austin",
            "state": "Texas",
            "zipcode": "73301",
            "seenAt": "2024-01-01T12:34:56:00.00+00.00",
            "referrer": "https://retention.com",
            "capturedUrl": "https://rb2b.com/pricing",
            "tags": "Hot Page, Hot Lead"
        }
    ]
}'
Response Response Example
{}
Modified at 2025-12-11 12:09:34
Previous
Topup wallet
Next
Toggle Campaign Status
Built with