Fetch More Profiles
`POST /sourcing-session/:sessionId/fetch-more`
Triggers a new search batch on an existing session — useful when you've gone through the current results and want fresh candidates without changing the queries.
## Path Parameters
| Name | Type | Description |
| --- | --- | --- |
| sessionId | string | Session ObjectId. |
## Headers
| Key | Value |
| --- | --- |
| x-fj-api-key | fjk_ |
| Content-Type | application/json |
## Body
Empty JSON object: `{}`
## Response (200)
Poll **Get Session Details** until `profileMatchingStatus` flips to `done`, then call **Get Profiles for Session**.
``` json
{
"statusCode": 200,
"data": {
"profileMatchingStatus": "fetching_more"
},
"message": "Fetching more profiles",
"status": "SUCCESS"
}
```
## cURL
Replace `fjk_YOUR_API_KEY_HERE` and , then paste and run:
``` bash
curl -X POST "https://prod.api.futurejobs.ai/api/v1/wl/sourcing-session/<SESSION_ID>/fetch-more" \
-H "x-fj-api-key: fjk_YOUR_API_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{}'
```
## Errors
- `401 Unauthorized`
- `402 Payment Required` — insufficient credits.
- `404 Not Found` — session not found.
Authentication
x-fj-api-keystring
API Key authentication via header
Request
This endpoint expects an object.
Response headers
X-Powered-By
X-Request-Id
Access-Control-Allow-Credentials
RateLimit-Policy
RateLimit-Limit
RateLimit-Remaining
RateLimit-Reset
ETag
Response
OK
statusCode
data
message
status