# Job Detail

Fetch the detailed Arbeitsagentur job payload for a single listing, including the full description, employer website, and contact details when the upstream source provides them.

- **Documentation:** [https://scrappa.co/docs/arbeitsagentur-jobs-api/arbeitsagentur_jobs_detail](https://scrappa.co/docs/arbeitsagentur-jobs-api/arbeitsagentur_jobs_detail)
- **API group:** Arbeitsagentur Jobs API
- **Endpoint:** `GET https://scrappa.co/api/arbeitsagentur/job`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `refnr` | string | Yes | Arbeitsagentur reference number for the listing, usually returned from the Job Search endpoint |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/arbeitsagentur/job?refnr=12345-abc"
```

## Example response

```json
{
    "success": true,
    "data": {
        "referenznummer": "12345-abc",
        "titel": "Software Entwickler (m/w/d)",
        "stellenbeschreibung": "<p>Full description</p>",
        "arbeitgeberWebseite": "https://example.com",
        "kontakt": {
            "name": "Max Mustermann",
            "telefonnummer": "+49 30 123456",
            "email": "max@example.com"
        }
    }
}
```

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
