Check Search

GET https://search.pex.com/api/v1/search/check-search/{lookup_id}

Requests the result for a Search lookup.

Request

Parameter
Type
Required
Description

lookup_id

string

Yes

Lookup ID returned by a Search start endpoint.

Examples

import requests

ACCESS_TOKEN = "YOUR_ACCESS_TOKEN"
LOOKUP_ID = "123456789012345678"

response = requests.get(
    f"https://search.pex.com/api/v1/search/check-search/{LOOKUP_ID}",
    headers={
        "Authorization": f"Bearer {ACCESS_TOKEN}",
    },
)

response.raise_for_status()

print(response.json())

Response

The check endpoint blocks until the lookup is complete, then returns the completed Search response.

Last updated