Backfill in-progress. Some lexicons and records may be missing or incomplete.

place.atwork.getListings

atwork.place

Documentation

main query

Get job listings, optionally filtered by tag or identity

Parameters

identity string Optional

Filter listings by creator DID (e.g., did:plc:abc123)

tag string Optional

Filter listings by hashtag

Output

Encodingapplication/json
listings array Required

No description provided.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
Filter listings by creator DID (e.g., did:plc:abc123)
Filter listings by hashtag
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "listings"
      ],
      "properties": {
        "listings": {
          "type": "array",
          "items": {
            "ref": "#listingRecord",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "tag": {
        "type": "string",
        "description": "Filter listings by hashtag"
      },
      "identity": {
        "type": "string",
        "description": "Filter listings by creator DID (e.g., did:plc:abc123)"
      }
    }
  },
  "description": "Get job listings, optionally filtered by tag or identity"
}
listingRecord object

A job listing record with metadata for strong references

Properties

cid string cid Required

CID of the listing record

uri string at-uri Required

AT-URI of the listing (at://did/place.atwork.listing/rkey)

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "cid"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "format": "cid",
      "description": "CID of the listing record"
    },
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the listing (at://did/place.atwork.listing/rkey)"
    },
    "value": {
      "ref": "place.atwork.listing",
      "type": "ref",
      "description": "The full job listing record"
    }
  },
  "description": "A job listing record with metadata for strong references"
}

Lexicon Garden

@