NoParam
  • Introduction
  • Authentication
  • API Endpoints
  • API Playground
  • SDK Examples
  • Error Handling
  • Mailchimp
  • Troubleshooting
  • Best Practices
  • Changelog
Powered by GitBook
On this page

API Playground

PreviousAPI EndpointsNextSDK Examples

Last updated 2 months ago

  • POSTVerify a single email address
  • POSTVerify multiple email addresses in bulk

Verify a single email address

post
Authorizations
Body
emailstringRequired

The email address to verify

Responses
200
Email verification result
application/json
401
Invalid or missing API key
application/json
422
Request validation failed
application/json
429
Monthly quota or rate limit exceeded
application/json
500
Internal server error
application/json
post
POST /api/v1/verify HTTP/1.1
Host: noparam.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 16

{
  "email": "text"
}
{
  "email": "text",
  "details": {
    "syntax": true,
    "domain_exists": true,
    "mx_records": true,
    "mailbox_exists": true,
    "disposable": true,
    "role_based": true,
    "suggestions": [
      "text"
    ]
  },
  "score": 1,
  "status": "VALID",
  "duration_ms": 1
}

Verify multiple email addresses in bulk

post
Authorizations
Body
emailsstring[] ยท max: 100Required

List of email addresses to verify

Responses
200
Bulk verification results
application/json
401
Invalid or missing API key
application/json
422
Request validation failed
application/json
429
Monthly quota or rate limit exceeded
application/json
500
Internal server error
application/json
post
POST /api/v1/verify/bulk HTTP/1.1
Host: noparam.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 19

{
  "emails": [
    "text"
  ]
}
{
  "results": [
    {
      "email": "text",
      "details": {
        "syntax": true,
        "domain_exists": true,
        "mx_records": true,
        "mailbox_exists": true,
        "disposable": true,
        "role_based": true,
        "suggestions": [
          "text"
        ]
      },
      "score": 1,
      "status": "VALID",
      "duration_ms": 1
    }
  ]
}