# Linked Panda Get Ad by ID

> Linked Panda Get Ad by ID is a paid API for AI agents from api.linkedpanda.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Retrieves details of a specific LinkedIn ad by its ID from the Linked Panda platform

## Facts

- Endpoint: POST https://api.linkedpanda.com/agent/v1/ads/get
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/linked-panda-get-ad-by-id-d545e313
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5mM0x0d9mIPpfwk3JiO2V

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability linked-panda-get-ad-by-id-d545e313 -d '<json body>'
```

Example prompt: Can you pull up the details for LinkedIn ad ID 'ad_8472xbc' from Linked Panda so I can review what's configured for that campaign?

## When to prefer this

Use this endpoint when you need to retrieve the details of a specific LinkedIn ad by its unique ID within the Linked Panda ecosystem, particularly when building B2B lead generation workflows or auditing individual ad configurations. Prefer this over general search endpoints when you already have the adId and need precise, single-record lookup.

## Known failure modes

- Invalid or non-existent adId returns empty results array with zero totalElements
- Missing adId field may return a 400 bad request or empty result set
- Payment not processed (x402) results in a 402 Payment Required response
- Malformed request context causes request rejection
- Rate limiting or authentication failures return 4xx errors

## How this service works

LinkedIn ad library details

## Output

Returns a JSON object with a results array containing ad details for the specified ad ID, along with pagination metadata including page size, page number, total elements, and a pagination token (null if no further pages).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "adId": {
   "type": "string"
  },
  "requestContext": {
   "type": "object",
   "properties": {
    "requestId": {
     "type": "string"
    },
    "userIntent": {
     "type": "string"
    },
    "promptSummary": {
     "type": "string"
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "results": [],
  "pagination": {
   "pageSize": 0,
   "pageNumber": 1,
   "totalElements": 0,
   "paginationToken": null
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/linked-panda-get-ad-by-id-d545e313/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.linkedpanda.com](https://www.zero.xyz/host/api.linkedpanda.com/llms.txt)
